diff --git a/core/vm/instructions.go b/core/vm/instructions.go index 44d3e81a9c..46e0b44e7e 100644 --- a/core/vm/instructions.go +++ b/core/vm/instructions.go @@ -681,7 +681,7 @@ func opCreate(pc *uint64, evm *EVM, scope *ScopeContext) ([]byte, error) { } else if suberr != nil && suberr != ErrCodeStoreOutOfGas { stackvalue.Clear() } else { - stackvalue.SetBytes(addr.Bytes()) + stackvalue.SetBytes20(addr.Bytes()) } scope.Stack.push(&stackvalue)