aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/state_manager.go2
-rw-r--r--ethchain/state_object.go6
2 files changed, 7 insertions, 1 deletions
diff --git a/ethchain/state_manager.go b/ethchain/state_manager.go
index 02d0345d7..501ec102b 100644
--- a/ethchain/state_manager.go
+++ b/ethchain/state_manager.go
@@ -350,7 +350,7 @@ func (sm *StateManager) notifyChanges() {
for stateObjectAddr, mappedObjects := range sm.manifest.storageChanges {
for addr, value := range mappedObjects {
- sm.Ethereum.Reactor().Post("storage:"+stateObjectAddr+":"+addr, value.String())
+ sm.Ethereum.Reactor().Post("storage:"+stateObjectAddr+":"+addr, &StorageState{[]byte(stateObjectAddr), []byte(addr), value})
}
}
}
diff --git a/ethchain/state_object.go b/ethchain/state_object.go
index 4ec91d2e0..617646077 100644
--- a/ethchain/state_object.go
+++ b/ethchain/state_object.go
@@ -186,3 +186,9 @@ type CachedStateObject struct {
Nonce uint64
Object *StateObject
}
+
+type StorageState struct {
+ StateAddress []byte
+ Address []byte
+ Value *big.Int
+}