diff options
author | Gav Wood <i@gavwood.com> | 2014-11-17 06:02:53 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-11-17 06:02:53 +0800 |
commit | d38e5bc4b01f9aa99af8fb0c0ae668f1a95bb4bd (patch) | |
tree | ce6ed1dfbe56e77802517864b7b93d50d394fac5 /crypto.cpp | |
parent | cdfeb725d469e686cbd024dcf4366d778e223930 (diff) | |
download | dexon-solidity-d38e5bc4b01f9aa99af8fb0c0ae668f1a95bb4bd.tar.gz dexon-solidity-d38e5bc4b01f9aa99af8fb0c0ae668f1a95bb4bd.tar.zst dexon-solidity-d38e5bc4b01f9aa99af8fb0c0ae668f1a95bb4bd.zip |
Windows build fix.
Diffstat (limited to 'crypto.cpp')
-rw-r--r-- | crypto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -139,7 +139,7 @@ BOOST_AUTO_TEST_CASE(cryptopp_ecdsa_sipaseckp256k1) Secret secret(sha3(sbytes)); KeyPair key(secret); - bytes m({0xFF}); + bytes m(1, 0xff); int tests = 2; while (m[0]++, tests--) { |