aboutsummaryrefslogtreecommitdiffstats
path: root/ethstate
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-15 06:25:16 +0800
committerobscuren <geffobscura@gmail.com>2014-08-15 06:25:16 +0800
commitc7ee9844bd6f8ed2bb466f8adf21f437ecc83564 (patch)
tree041ff6019d4515460e0e696d8b598081cf17a0c6 /ethstate
parent0fcc6065692f2692072cdf0d61fe1ada547fc235 (diff)
downloaddexon-c7ee9844bd6f8ed2bb466f8adf21f437ecc83564.tar.gz
dexon-c7ee9844bd6f8ed2bb466f8adf21f437ecc83564.tar.zst
dexon-c7ee9844bd6f8ed2bb466f8adf21f437ecc83564.zip
Removed old code
Diffstat (limited to 'ethstate')
-rw-r--r--ethstate/manifest.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/ethstate/manifest.go b/ethstate/manifest.go
index b771127a6..88ce673b9 100644
--- a/ethstate/manifest.go
+++ b/ethstate/manifest.go
@@ -17,7 +17,7 @@ type Manifest struct {
ObjectChanges map[string]*StateObject
StorageChanges map[string]map[string]*big.Int
- Messages []*Message
+ Messages Messages
}
func NewManifest() *Manifest {
@@ -50,6 +50,7 @@ func (self *Manifest) AddMessage(msg *Message) *Message {
return msg
}
+type Messages []*Message
type Message struct {
To, From []byte
Input []byte