quorum/core/types/receipt.go

82 lines
1.9 KiB
Go
Raw Normal View History

package types
2014-11-11 03:16:36 -08:00
import (
"bytes"
"fmt"
"math/big"
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
2014-11-11 03:16:36 -08:00
"github.com/ethereum/go-ethereum/state"
)
type Receipt struct {
PostState []byte
CumulativeGasUsed *big.Int
Bloom []byte
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)}
}
2015-03-16 03:27:38 -07:00
func NewRecieptFromValue(val *common.Value) *Receipt {
2014-11-11 03:16:36 -08:00
r := &Receipt{}
r.RlpValueDecode(val)
return r
}
func (self *Receipt) SetLogs(logs state.Logs) {
self.logs = logs
}
2015-03-16 03:27:38 -07:00
func (self *Receipt) RlpValueDecode(decoder *common.Value) {
2014-11-11 03:16:36 -08:00
self.PostState = decoder.Get(0).Bytes()
self.CumulativeGasUsed = decoder.Get(1).BigInt()
self.Bloom = decoder.Get(2).Bytes()
it := decoder.Get(3).NewIterator()
for it.Next() {
self.logs = append(self.logs, state.NewLogFromValue(it.Value()))
}
}
func (self *Receipt) RlpData() interface{} {
return []interface{}{self.PostState, self.CumulativeGasUsed, self.Bloom, self.logs.RlpData()}
}
func (self *Receipt) RlpEncode() []byte {
2015-03-16 03:27:38 -07:00
return common.Encode(self.RlpData())
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
func (self Receipts) RlpData() interface{} {
data := make([]interface{}, len(self))
for i, receipt := range self {
data[i] = receipt.RlpData()
}
return data
}
func (self Receipts) RlpEncode() []byte {
2015-03-16 03:27:38 -07:00
return common.Encode(self.RlpData())
}
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]) }