aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/state_manager.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-08 20:20:45 +0800
committerobscuren <geffobscura@gmail.com>2014-05-08 20:20:45 +0800
commitf0440e85dc306f270666e3aee1fe419b684a2ae8 (patch)
tree48bdfe63832723d5007536c73452a98859941ed9 /ethchain/state_manager.go
parent554f4f6f7d8b8bc5332d42631ec9de0d7015eccf (diff)
downloaddexon-f0440e85dc306f270666e3aee1fe419b684a2ae8.tar.gz
dexon-f0440e85dc306f270666e3aee1fe419b684a2ae8.tar.zst
dexon-f0440e85dc306f270666e3aee1fe419b684a2ae8.zip
Removed value from closure.
Diffstat (limited to 'ethchain/state_manager.go')
-rw-r--r--ethchain/state_manager.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/state_manager.go b/ethchain/state_manager.go
index e8843a89e..b8a893d15 100644
--- a/ethchain/state_manager.go
+++ b/ethchain/state_manager.go
@@ -323,7 +323,7 @@ func (sm *StateManager) EvalScript(script []byte, object *StateObject, tx *Trans
return
}
- closure := NewClosure(account, object, script, sm.procState, tx.Gas, tx.GasPrice, tx.Value)
+ closure := NewClosure(account, object, script, sm.procState, tx.Gas, tx.GasPrice)
vm := NewVm(sm.procState, sm, RuntimeVars{
Origin: account.Address(),
BlockNumber: block.BlockInfo().Number,