Skip to content

Commit

Permalink
core/vm: fix typo in instructions.go (ethereum#16788)
Browse files Browse the repository at this point in the history
  • Loading branch information
abeln authored and firmianavan committed Aug 28, 2018
1 parent f62fc8a commit a6f6649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/vm/instructions.go
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ func makePush(size uint64, pushByteSize int) executionFunc {
}
}

// make push instruction function
// make dup instruction function
func makeDup(size int64) executionFunc {
return func(pc *uint64, evm *EVM, contract *Contract, memory *Memory, stack *Stack) ([]byte, error) {
stack.dup(evm.interpreter.intPool, int(size))
Expand Down

0 comments on commit a6f6649

Please sign in to comment.