diff options
| author | Interchained <president@worldvaporexpo.com> | 2020-02-14 18:35:53 -0500 |
|---|---|---|
| committer | Mark Evans <president@worldvaporexpo.com> | 2020-02-17 11:55:15 -0500 |
| commit | c61abf87c0aa4157824326ff80670ad3ccc9e470 (patch) | |
| tree | 94196dde14352eb38b1f977c8af02c183b6d3ba7 /src/cryptonote_core/cryptonote_tx_utils.cpp | |
| parent | 6b2b1d6368f5164b5354cd5826edd09c4de00cad (diff) | |
| download | monzero-core-c61abf87c0aa4157824326ff80670ad3ccc9e470.tar.gz monzero-core-c61abf87c0aa4157824326ff80670ad3ccc9e470.tar.xz monzero-core-c61abf87c0aa4157824326ff80670ad3ccc9e470.zip | |
remove empty statements
Cleaning up a little around the code base.
Diffstat (limited to 'src/cryptonote_core/cryptonote_tx_utils.cpp')
| -rw-r--r-- | src/cryptonote_core/cryptonote_tx_utils.cpp | 2 |
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 << ")"); |
