5a652190d9
* Upgrade go-ethereum to v1.8 * Add Node Info for parity nodes * Upgrade start_private_blockchain to use v1.8
13 lines
242 B
Go
13 lines
242 B
Go
package core
|
|
|
|
type Receipt struct {
|
|
Bloom string
|
|
ContractAddress string
|
|
CumulativeGasUsed uint64
|
|
GasUsed uint64
|
|
Logs []Log
|
|
StateRoot string
|
|
Status int
|
|
TxHash string
|
|
}
|