2017-10-31 13:58:04 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
type Transaction struct {
|
2018-02-02 21:53:16 +00:00
|
|
|
Hash string `db:"tx_hash"`
|
|
|
|
Data string `db:"tx_input_data"`
|
|
|
|
Nonce uint64 `db:"tx_nonce"`
|
|
|
|
To string `db:"tx_to"`
|
|
|
|
From string `db:"tx_from"`
|
|
|
|
GasLimit int64 `db:"tx_gaslimit"`
|
|
|
|
GasPrice int64 `db:"tx_gasprice"`
|
2018-01-03 17:23:43 +00:00
|
|
|
Receipt
|
2018-02-02 21:53:16 +00:00
|
|
|
Value string `db:"tx_value"`
|
2017-10-31 13:58:04 +00:00
|
|
|
}
|