5a652190d9
* Upgrade go-ethereum to v1.8 * Add Node Info for parity nodes * Upgrade start_private_blockchain to use v1.8
14 lines
300 B
Go
14 lines
300 B
Go
package core
|
|
|
|
type Transaction struct {
|
|
Hash string `db:"hash"`
|
|
Data string `db:"input_data"`
|
|
Nonce uint64 `db:"nonce"`
|
|
To string `db:"tx_to"`
|
|
From string `db:"tx_from"`
|
|
GasLimit uint64 `db:"gaslimit"`
|
|
GasPrice int64 `db:"gasprice"`
|
|
Receipt
|
|
Value string `db:"value"`
|
|
}
|