2014-10-31 13:43:14 +00:00
|
|
|
package state
|
2014-10-27 10:44:16 +00:00
|
|
|
|
2014-11-11 11:16:36 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
2015-03-16 22:10:26 +00:00
|
|
|
"io"
|
2014-11-11 11:16:36 +00:00
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-03-16 22:10:26 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
2014-11-11 11:16:36 +00:00
|
|
|
)
|
2014-10-27 10:44:16 +00:00
|
|
|
|
2015-04-08 15:14:58 +00:00
|
|
|
type Log struct {
|
|
|
|
Address common.Address
|
|
|
|
Topics []common.Hash
|
|
|
|
Data []byte
|
|
|
|
Number uint64
|
2015-02-22 12:24:26 +00:00
|
|
|
|
2015-04-08 15:14:58 +00:00
|
|
|
TxHash common.Hash
|
|
|
|
TxIndex uint
|
|
|
|
BlockHash common.Hash
|
|
|
|
Index uint
|
2014-12-04 11:35:23 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 15:14:58 +00:00
|
|
|
func NewLog(address common.Address, topics []common.Hash, data []byte, number uint64) *Log {
|
|
|
|
return &Log{Address: address, Topics: topics, Data: data, Number: number}
|
2014-12-04 11:35:23 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 15:14:58 +00:00
|
|
|
func (self *Log) EncodeRLP(w io.Writer) error {
|
|
|
|
return rlp.Encode(w, []interface{}{self.Address, self.Topics, self.Data})
|
2014-12-04 11:35:23 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 15:14:58 +00:00
|
|
|
func (self *Log) String() string {
|
|
|
|
return fmt.Sprintf(`log: %x %x %x`, self.Address, self.Topics, self.Data)
|
2014-12-04 11:35:23 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 15:14:58 +00:00
|
|
|
type Logs []*Log
|
2014-11-11 11:16:36 +00:00
|
|
|
|
2014-12-04 11:35:23 +00:00
|
|
|
func (self Logs) String() (ret string) {
|
2014-11-11 11:16:36 +00:00
|
|
|
for _, log := range self {
|
2014-12-04 11:35:23 +00:00
|
|
|
ret += fmt.Sprintf("%v", log)
|
2014-11-11 11:16:36 +00:00
|
|
|
}
|
2014-12-04 11:35:23 +00:00
|
|
|
|
|
|
|
return "[" + ret + "]"
|
2014-11-11 11:16:36 +00:00
|
|
|
}
|