quorum/core/state/log.go

67 lines
1.7 KiB
Go
Raw Normal View History

2015-07-06 17:54:22 -07:00
// Copyright 2014 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
2014-10-31 06:43:14 -07:00
package state
2014-10-27 03:44:16 -07:00
2014-11-11 03:16:36 -08:00
import (
"fmt"
2015-03-16 15:10:26 -07:00
"io"
2014-11-11 03:16:36 -08:00
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
)
2014-10-27 03:44:16 -07:00
type Log struct {
Address common.Address
Topics []common.Hash
Data []byte
Number uint64
2015-02-22 04:24:26 -08:00
TxHash common.Hash
TxIndex uint
BlockHash common.Hash
Index uint
2014-12-04 03:35:23 -08: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 03:35:23 -08:00
}
func (self *Log) EncodeRLP(w io.Writer) error {
return rlp.Encode(w, []interface{}{self.Address, self.Topics, self.Data})
2014-12-04 03:35:23 -08:00
}
func (self *Log) String() string {
return fmt.Sprintf(`log: %x %x %x %x %d %x %d`, self.Address, self.Topics, self.Data, self.TxHash, self.TxIndex, self.BlockHash, self.Index)
2014-12-04 03:35:23 -08:00
}
type Logs []*Log
2014-11-11 03:16:36 -08:00
type LogForStorage Log
func (self *LogForStorage) EncodeRLP(w io.Writer) error {
return rlp.Encode(w, []interface{}{
self.Address,
self.Topics,
self.Data,
self.Number,
self.TxHash,
self.TxIndex,
self.BlockHash,
self.Index,
})
2014-11-11 03:16:36 -08:00
}