3f06c7374b
* Add test for converting big.Int * Use string as internal representation of transaction value
14 lines
182 B
Go
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
|
|
}
|