aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/cryptonote_tx_utils.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-04-04 12:47:31 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-04-04 12:47:31 -0500
commitc4f75fe898992d502e2ef3b6c9d88bc523690403 (patch)
tree573c7c7c8f8ddf5f39fec89071b07aad42bd10d0 /src/cryptonote_core/cryptonote_tx_utils.cpp
parent081d49c59f0f19ee82f0d8e1b33371dc43c37938 (diff)
parentc61abf87c0aa4157824326ff80670ad3ccc9e470 (diff)
downloadmonzero-core-c4f75fe898992d502e2ef3b6c9d88bc523690403.tar.gz
monzero-core-c4f75fe898992d502e2ef3b6c9d88bc523690403.tar.xz
monzero-core-c4f75fe898992d502e2ef3b6c9d88bc523690403.zip
Merge pull request #6339
c61abf8 remove empty statements (shopglobal)
Diffstat (limited to 'src/cryptonote_core/cryptonote_tx_utils.cpp')
-rw-r--r--src/cryptonote_core/cryptonote_tx_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_tx_utils.cpp b/src/cryptonote_core/cryptonote_tx_utils.cpp
index f50fc61a5..b84a59698 100644
--- a/src/cryptonote_core/cryptonote_tx_utils.cpp
+++ b/src/cryptonote_core/cryptonote_tx_utils.cpp
@@ -142,7 +142,7 @@ namespace cryptonote
uint64_t summary_amounts = 0;
for (size_t no = 0; no < out_amounts.size(); no++)
{
- crypto::key_derivation derivation = AUTO_VAL_INIT(derivation);;
+ crypto::key_derivation derivation = AUTO_VAL_INIT(derivation);
crypto::public_key out_eph_public_key = AUTO_VAL_INIT(out_eph_public_key);
bool r = crypto::generate_key_derivation(miner_address.m_view_public_key, txkey.sec, derivation);
CHECK_AND_ASSERT_MES(r, false, "while creating outs: failed to generate_key_derivation(" << miner_address.m_view_public_key << ", " << txkey.sec << ")");