aboutsummaryrefslogtreecommitdiffstats
path: root/vm
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-12 22:24:34 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-12 22:24:34 +0800
commitb006b677683071c5e114d17649262ed414ba1779 (patch)
tree1a27e437dd599bd1277b4ce4587bcd89ceeed4c7 /vm
parent4418e4ea6a9b8d648bcb7e7241b887cbab6936bc (diff)
parent2a0e5888fdd357553e31bcee4264d9db6f486f39 (diff)
downloaddexon-b006b677683071c5e114d17649262ed414ba1779.tar
dexon-b006b677683071c5e114d17649262ed414ba1779.tar.gz
dexon-b006b677683071c5e114d17649262ed414ba1779.tar.bz2
dexon-b006b677683071c5e114d17649262ed414ba1779.tar.lz
dexon-b006b677683071c5e114d17649262ed414ba1779.tar.xz
dexon-b006b677683071c5e114d17649262ed414ba1779.tar.zst
dexon-b006b677683071c5e114d17649262ed414ba1779.zip
Merge branch 'develop' into rpcfrontier
Diffstat (limited to 'vm')
-rw-r--r--vm/stack.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/vm/stack.go b/vm/stack.go
index a99cc1805..c5c2774db 100644
--- a/vm/stack.go
+++ b/vm/stack.go
@@ -15,10 +15,11 @@ type stack struct {
}
func (st *stack) push(d *big.Int) {
+ stackItem := new(big.Int).Set(d)
if len(st.data) > st.ptr {
- st.data[st.ptr] = d
+ st.data[st.ptr] = stackItem
} else {
- st.data = append(st.data, d)
+ st.data = append(st.data, stackItem)
}
st.ptr++
}