ipld-eth-server/pkg/core/log.go
Matt K 5e64283a12 Get logs for a contract (#99)
* Add ability to fetch logs for a contract and a block

* Test contract related code against Infura, so can run on Travis

* Add godo task for getLogs
2017-12-11 15:08:00 -06:00

10 lines
135 B
Go

package core
type Log struct {
BlockNumber int64
TxHash string
Address string
Topics []string
Data string
}