Small changes to helper method names/arg names

This commit is contained in:
Elizabeth Engelman
2019-09-25 16:36:08 -05:00
parent 2ff88de859
commit e1de3afdfc
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -61,6 +61,6 @@ func FromGethStateDiff(account statediff.AccountDiff, stateDiff *statediff.State
}
}
func HexToKeccak256Hash(addr string) common.Hash {
return crypto.Keccak256Hash(common.FromHex(addr))
func HexToKeccak256Hash(hex string) common.Hash {
return crypto.Keccak256Hash(common.FromHex(hex))
}