4fabe3e917
* Conversion between Geth Receipt and core.Receipt * Add receipt to DB * Insert receipts with transactions * Update Travis CI to use dep for dependencies
13 lines
240 B
Go
13 lines
240 B
Go
package core
|
|
|
|
type Receipt struct {
|
|
Bloom string
|
|
ContractAddress string
|
|
CumulativeGasUsed int64
|
|
GasUsed int64
|
|
Logs []Log
|
|
StateRoot string
|
|
Status int
|
|
TxHash string
|
|
}
|