ipld-eth-server/pkg/core/transaction.go
Matt K 3f06c7374b Update transaction value field (#132)
* Add test for converting big.Int

* Use string as internal representation of transaction value
2018-01-16 14:25:33 -06:00

14 lines
182 B
Go

package core
type Transaction struct {
Hash string
Data string
Nonce uint64
To string
From string
GasLimit int64
GasPrice int64
Receipt
Value string
}