We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7702989 commit 234a5c4Copy full SHA for 234a5c4
mobile/types.go
@@ -353,7 +353,7 @@ func (r *Receipt) String() string {
353
return r.receipt.String()
354
}
355
356
-func (r *Receipt) GetStatus() uint { return r.receipt.Status }
+func (r *Receipt) GetStatus() int { return int(r.receipt.Status) }
357
func (r *Receipt) GetPostState() []byte { return r.receipt.PostState }
358
func (r *Receipt) GetCumulativeGasUsed() int64 { return int64(r.receipt.CumulativeGasUsed) }
359
func (r *Receipt) GetBloom() *Bloom { return &Bloom{r.receipt.Bloom} }
0 commit comments