core: fix typo in comment code

This commit is contained in:
hadv 2018-07-25 18:04:38 +07:00
parent 10780e8a00
commit bc0a43191e
No known key found for this signature in database
GPG Key ID: EC2B318ACE3D164F

View File

@ -84,7 +84,7 @@ func GetHashFn(ref *types.Header, chain ChainContext) func(n uint64) common.Hash
}
}
// CanTransfer checks wether there are enough funds in the address' account to make a transfer.
// CanTransfer checks whether there are enough funds in the address' account to make a transfer.
// This does not take the necessary gas in to account to make the transfer valid.
func CanTransfer(db vm.StateDB, addr common.Address, amount *big.Int) bool {
return db.GetBalance(addr).Cmp(amount) >= 0