diff --git a/core/vm/memory.go b/core/vm/memory.go
index d20aa9591032658dfd9ec534185a1fb0ad8f1579..ea2ee80fbe91edfee86e4f891590c05ff559b041 100644
--- a/core/vm/memory.go
+++ b/core/vm/memory.go
@@ -1,10 +1,6 @@
 package vm
 
-import (
-	"fmt"
-
-	"github.com/ethereum/go-ethereum/common"
-)
+import "fmt"
 
 type Memory struct {
 	store []byte
@@ -24,7 +20,7 @@ func (m *Memory) Set(offset, size uint64, value []byte) {
 	// It's possible the offset is greater than 0 and size equals 0. This is because
 	// the calcMemSize (common.go) could potentially return 0 when size is zero (NO-OP)
 	if size > 0 {
-		copy(m.store[offset:offset+size], common.RightPadBytes(value, int(size)))
+		copy(m.store[offset:offset+size], value)
 	}
 }