quorum/core/types/receipt.go

82 lines
1.8 KiB
Go
Raw Normal View History

package types
2014-11-11 03:16:36 -08:00
import (
"bytes"
"fmt"
2015-03-16 15:10:26 -07:00
"io"
2014-11-11 03:16:36 -08:00
"math/big"
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
2015-03-16 15:10:26 -07:00
"github.com/ethereum/go-ethereum/rlp"
2014-11-11 03:16:36 -08:00
"github.com/ethereum/go-ethereum/state"
)
type Receipt struct {
PostState []byte
CumulativeGasUsed *big.Int
2015-03-16 15:48:18 -07:00
Bloom Bloom
2014-11-11 03:16:36 -08:00
logs state.Logs
}
func NewReceipt(root []byte, cumalativeGasUsed *big.Int) *Receipt {
2015-03-16 03:27:38 -07:00
return &Receipt{PostState: common.CopyBytes(root), CumulativeGasUsed: new(big.Int).Set(cumalativeGasUsed)}
}
func (self *Receipt) SetLogs(logs state.Logs) {
self.logs = logs
}
2015-03-16 15:10:26 -07:00
func (self *Receipt) EncodeRLP(w io.Writer) error {
return rlp.Encode(w, []interface{}{self.PostState, self.CumulativeGasUsed, self.Bloom, self.logs})
2014-11-11 03:16:36 -08:00
}
2015-03-16 15:10:26 -07:00
/*
2014-11-11 03:16:36 -08:00
func (self *Receipt) RlpData() interface{} {
return []interface{}{self.PostState, self.CumulativeGasUsed, self.Bloom, self.logs.RlpData()}
}
2015-03-16 15:10:26 -07:00
*/
2014-11-11 03:16:36 -08:00
func (self *Receipt) RlpEncode() []byte {
2015-03-16 15:10:26 -07:00
bytes, err := rlp.EncodeToBytes(self)
if err != nil {
fmt.Println("TMP -- RECEIPT ENCODE ERROR", err)
}
return bytes
2014-11-11 03:16:36 -08:00
}
func (self *Receipt) Cmp(other *Receipt) bool {
if bytes.Compare(self.PostState, other.PostState) != 0 {
return false
}
return true
}
func (self *Receipt) String() string {
2014-11-14 05:17:54 -08:00
return fmt.Sprintf("receipt{med=%x cgas=%v bloom=%x logs=%v}", self.PostState, self.CumulativeGasUsed, self.Bloom, self.logs)
2014-11-11 03:16:36 -08:00
}
type Receipts []*Receipt
2015-03-16 15:10:26 -07:00
/*
func (self Receipts) RlpData() interface{} {
data := make([]interface{}, len(self))
for i, receipt := range self {
data[i] = receipt.RlpData()
}
return data
}
2015-03-16 15:10:26 -07:00
*/
func (self Receipts) RlpEncode() []byte {
2015-03-16 15:10:26 -07:00
bytes, err := rlp.EncodeToBytes(self)
if err != nil {
fmt.Println("TMP -- RECEIPTS ENCODE ERROR", err)
}
return bytes
}
2014-11-11 03:16:36 -08:00
func (self Receipts) Len() int { return len(self) }
2015-03-16 03:27:38 -07:00
func (self Receipts) GetRlp(i int) []byte { return common.Rlp(self[i]) }