fix returns

This commit is contained in:
João Vítor
2018-06-03 17:57:15 -03:00
committed by GitHub
parent 6bd82428d2
commit 94381c67b9
+1 -1
View File
@@ -851,7 +851,7 @@ The full contract
}
/// builds a prefixed hash to mimic the behavior of eth_sign.
function prefixed(bytes32 hash) internal pure return (bytes32) {
function prefixed(bytes32 hash) internal pure returns (bytes32) {
return keccak256("\x19Ethereum Signed Message:\n32", hash);
}
}