diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-23 01:24:02 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-20 08:23:21 +0800 |
commit | aad829948a7b21d7664a43c1127679b53ae40bdc (patch) | |
tree | 9809a49c773d3e7cfbe2bb2c1db926ad0b6810ca /libdevcore | |
parent | 137b214be471dd690aeadaf0e02b9ad0915d9e84 (diff) | |
download | dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.gz dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.bz2 dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.lz dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.xz dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.tar.zst dexon-solidity-aad829948a7b21d7664a43c1127679b53ae40bdc.zip |
Ensure parameter names match between headers and implementation
Diffstat (limited to 'libdevcore')
-rw-r--r-- | libdevcore/SwarmHash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdevcore/SwarmHash.h b/libdevcore/SwarmHash.h index a5da96f5..a06f7bda 100644 --- a/libdevcore/SwarmHash.h +++ b/libdevcore/SwarmHash.h @@ -26,7 +26,7 @@ namespace dev { -/// Compute the "swarm hash" of @a _data -h256 swarmHash(std::string const& _data); +/// Compute the "swarm hash" of @a _input +h256 swarmHash(std::string const& _input); } |