diff options
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 |