diff --git a/core/vm/instructions.go b/core/vm/instructions.go
index c0ac911ac0e574a3d56753a24d5e0b634e4035a1..42f1781d8878ad6a4a836db8063cdaf46b921230 100644
--- a/core/vm/instructions.go
+++ b/core/vm/instructions.go
@@ -731,7 +731,7 @@ func makePush(size uint64, pushByteSize int) executionFunc {
 // make push instruction function
 func makeDup(size int64) executionFunc {
 	return func(pc *uint64, evm *EVM, contract *Contract, memory *Memory, stack *Stack) ([]byte, error) {
-		stack.dup(int(size))
+		stack.dup(evm.interpreter.intPool, int(size))
 		return nil, nil
 	}
 }
diff --git a/core/vm/stack.go b/core/vm/stack.go
index 2d1b7bb82d48c031686bebf4c93f959b2dafab6c..f4777c5b3f3023f3ad9e2b6a2210f819d48ff265 100644
--- a/core/vm/stack.go
+++ b/core/vm/stack.go
@@ -60,8 +60,8 @@ func (st *Stack) swap(n int) {
 	st.data[st.len()-n], st.data[st.len()-1] = st.data[st.len()-1], st.data[st.len()-n]
 }
 
-func (st *Stack) dup(n int) {
-	st.push(new(big.Int).Set(st.data[st.len()-n]))
+func (st *Stack) dup(pool *intPool, n int) {
+	st.push(pool.get().Set(st.data[st.len()-n]))
 }
 
 func (st *Stack) peek() *big.Int {