diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-07-12 18:04:05 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-28 21:29:29 +0100 |
commit | 1e21651f241dc4ac95cbdc540d9e3d07420bba02 (patch) | |
tree | 84c1cdd686d154b07c88ec6614288d0c57a95d82 /src/ringct/rctOps.cpp | |
parent | wallet: handle 0 change properly (diff) | |
download | monero-1e21651f241dc4ac95cbdc540d9e3d07420bba02.tar.xz |
rct: use the already defined H where possible
Found by luigi1111w
Diffstat (limited to '')
-rw-r--r-- | src/ringct/rctOps.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ringct/rctOps.cpp b/src/ringct/rctOps.cpp index c18ee6f2b..06267fd8e 100644 --- a/src/ringct/rctOps.cpp +++ b/src/ringct/rctOps.cpp @@ -244,8 +244,7 @@ namespace rct { key scalarmultH(const key & a) { ge_p3 A; ge_p2 R; - key Htmp = { {0x8b, 0x65, 0x59, 0x70, 0x15, 0x37, 0x99, 0xaf, 0x2a, 0xea, 0xdc, 0x9f, 0xf1, 0xad, 0xd0, 0xea, 0x6c, 0x72, 0x51, 0xd5, 0x41, 0x54, 0xcf, 0xa9, 0x2c, 0x17, 0x3a, 0x0d, 0xd3, 0x9c, 0x1f, 0x94} }; - CHECK_AND_ASSERT_THROW_MES(ge_frombytes_vartime(&A, Htmp.bytes) == 0, "ge_frombytes_vartime failed at "+boost::lexical_cast<std::string>(__LINE__)); + CHECK_AND_ASSERT_THROW_MES(ge_frombytes_vartime(&A, H.bytes) == 0, "ge_frombytes_vartime failed at "+boost::lexical_cast<std::string>(__LINE__)); ge_scalarmult(&R, a.bytes, &A); key aP; ge_tobytes(aP.bytes, &R); |