5e64283a12
* 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
10 lines
135 B
Go
10 lines
135 B
Go
package core
|
|
|
|
type Log struct {
|
|
BlockNumber int64
|
|
TxHash string
|
|
Address string
|
|
Topics []string
|
|
Data string
|
|
}
|