diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-14 21:17:54 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-14 21:17:54 +0800 |
commit | 56aa24002de357c24a9644a49d5702c8d4663909 (patch) | |
tree | 7791c7cbe4e66137cf85a405cf32751a7916ce70 /chain/receipt.go | |
parent | 711be7009ef5b9ad77f37a4ccd0dffcc9286e1f8 (diff) | |
download | dexon-56aa24002de357c24a9644a49d5702c8d4663909.tar.gz dexon-56aa24002de357c24a9644a49d5702c8d4663909.tar.zst dexon-56aa24002de357c24a9644a49d5702c8d4663909.zip |
Clean up
Diffstat (limited to 'chain/receipt.go')
-rw-r--r-- | chain/receipt.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/chain/receipt.go b/chain/receipt.go index c2e6f53a5..fa53f1cdb 100644 --- a/chain/receipt.go +++ b/chain/receipt.go @@ -51,11 +51,7 @@ func (self *Receipt) Cmp(other *Receipt) bool { } func (self *Receipt) String() string { - return fmt.Sprintf(`Receipt: %x -cumulative gas: %v -bloom: %x -logs: %v -rlp: %x`, self.PostState, self.CumulativeGasUsed, self.Bloom, self.logs, self.RlpEncode()) + return fmt.Sprintf("receipt{med=%x cgas=%v bloom=%x logs=%v}", self.PostState, self.CumulativeGasUsed, self.Bloom, self.logs) } type Receipts []*Receipt |