ipld-eth-server/pkg/core/transaction.go

13 lines
175 B
Go
Raw Normal View History

2017-10-31 13:58:04 +00:00
package core
type Transaction struct {
Hash string
Data []byte
Nonce uint64
To string
2017-11-08 20:55:35 +00:00
From string
2017-10-31 13:58:04 +00:00
GasLimit int64
GasPrice int64
Value int64
}