2017-10-31 13:58:04 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
type Transaction struct {
|
2018-02-02 22:12:14 +00:00
|
|
|
Hash string `db:"hash"`
|
|
|
|
Data string `db:"input_data"`
|
|
|
|
Nonce uint64 `db:"nonce"`
|
2018-02-02 21:53:16 +00:00
|
|
|
To string `db:"tx_to"`
|
|
|
|
From string `db:"tx_from"`
|
2018-03-07 21:29:21 +00:00
|
|
|
GasLimit uint64 `db:"gaslimit"`
|
2018-02-02 22:12:14 +00:00
|
|
|
GasPrice int64 `db:"gasprice"`
|
2018-01-03 17:23:43 +00:00
|
|
|
Receipt
|
2018-02-02 22:12:14 +00:00
|
|
|
Value string `db:"value"`
|
2017-10-31 13:58:04 +00:00
|
|
|
}
|