diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-21 06:17:50 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-21 06:17:50 +0800 |
commit | 5ceb1620e93e1999c6f72e6164c7c65af63244ec (patch) | |
tree | e3185f8202dd3f3ebd065be5a1ea7e7ba08e6055 /ethchain/stack.go | |
parent | e8b45852952138ac24dada1a70480d31d0886c27 (diff) | |
download | dexon-5ceb1620e93e1999c6f72e6164c7c65af63244ec.tar dexon-5ceb1620e93e1999c6f72e6164c7c65af63244ec.tar.gz dexon-5ceb1620e93e1999c6f72e6164c7c65af63244ec.tar.bz2 dexon-5ceb1620e93e1999c6f72e6164c7c65af63244ec.tar.lz dexon-5ceb1620e93e1999c6f72e6164c7c65af63244ec.tar.xz dexon-5ceb1620e93e1999c6f72e6164c7c65af63244ec.tar.zst dexon-5ceb1620e93e1999c6f72e6164c7c65af63244ec.zip |
Fixed couple issues
* (imp) Lock / RLock tries
* (fix) stack
Diffstat (limited to 'ethchain/stack.go')
-rw-r--r-- | ethchain/stack.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/stack.go b/ethchain/stack.go index e9297b324..bf34e6ea9 100644 --- a/ethchain/stack.go +++ b/ethchain/stack.go @@ -65,7 +65,7 @@ func (st *Stack) Peekn() (*big.Int, *big.Int) { } func (st *Stack) Push(d *big.Int) { - st.data = append(st.data, d) + st.data = append(st.data, new(big.Int).Set(d)) } func (st *Stack) Get(amount *big.Int) []*big.Int { |