Skip to content

Commit

Permalink
core/vm: fix comment grammar (ethereum#19923)
Browse files Browse the repository at this point in the history
* core/vm:modify comment errors

* modify its back to it's
  • Loading branch information
CoreyLin authored and karalabe committed Aug 7, 2019
1 parent beff5fa commit f891fd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/vm/contract.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (c *Contract) Address() common.Address {
return c.self.Address()
}

// Value returns the contracts value (sent to it from it's caller)
// Value returns the contract's value (sent to it from it's caller)
func (c *Contract) Value() *big.Int {
return c.value
}
Expand Down
2 changes: 1 addition & 1 deletion core/vm/evm.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type (
CanTransferFunc func(StateDB, common.Address, *big.Int) bool
// TransferFunc is the signature of a transfer function
TransferFunc func(StateDB, common.Address, common.Address, *big.Int)
// GetHashFunc returns the nth block hash in the blockchain
// GetHashFunc returns the n'th block hash in the blockchain
// and is used by the BLOCKHASH EVM op code.
GetHashFunc func(uint64) common.Hash
)
Expand Down

0 comments on commit f891fd9

Please sign in to comment.