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
|
||
|
}
|