Skip to content

Commit

Permalink
add receip status
Browse files Browse the repository at this point in the history
  • Loading branch information
Erichin committed Apr 28, 2018
1 parent 7702989 commit 234a5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ func (r *Receipt) String() string {
return r.receipt.String()
}

func (r *Receipt) GetStatus() uint { return r.receipt.Status }
func (r *Receipt) GetStatus() int { return int(r.receipt.Status) }
func (r *Receipt) GetPostState() []byte { return r.receipt.PostState }
func (r *Receipt) GetCumulativeGasUsed() int64 { return int64(r.receipt.CumulativeGasUsed) }
func (r *Receipt) GetBloom() *Bloom { return &Bloom{r.receipt.Bloom} }
Expand Down

0 comments on commit 234a5c4

Please sign in to comment.