This commit is contained in:
Jae Kwon
2015-06-25 20:28:34 -07:00
parent a55950e1d0
commit 9965dd5de6
75 changed files with 556 additions and 522 deletions

View File

@@ -10,9 +10,9 @@ const (
type Account struct {
Address Word256
Balance uint64
Balance int64
Code []byte
Nonce uint64
Nonce int64
StorageRoot Word256
Other interface{} // For holding all other data.
}
@@ -26,7 +26,7 @@ type Log struct {
Address Word256
Topics []Word256
Data []byte
Height uint64
Height int64
}
type AppState interface {
@@ -46,8 +46,8 @@ type AppState interface {
}
type Params struct {
BlockHeight uint64
BlockHeight int64
BlockHash Word256
BlockTime int64
GasLimit uint64
GasLimit int64
}