diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-10-20 16:50:36 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-10-20 16:50:36 +0000 |
commit | 874487fed8bc51aa01d4e3c216d546fde1210f0e (patch) | |
tree | b390cbd6a0c87b422e6ee76ae9e34af946eddd4c /src | |
parent | Merge pull request #6841 (diff) | |
download | monero-874487fed8bc51aa01d4e3c216d546fde1210f0e.tar.xz |
blockchain: remove some dead code
This is already done
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/blockchain.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index 93e3ef3bc..a914afad9 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -3128,14 +3128,6 @@ bool Blockchain::expand_transaction_2(transaction &tx, const crypto::hash &tx_pr } } } - else if (rv.type == rct::RCTTypeCLSAG) - { - CHECK_AND_ASSERT_MES(rv.p.CLSAGs.size() == tx.vin.size(), false, "Bad CLSAGs size"); - for (size_t n = 0; n < tx.vin.size(); ++n) - { - rv.p.CLSAGs[n].I = rct::ki2rct(boost::get<txin_to_key>(tx.vin[n]).k_image); - } - } else { CHECK_AND_ASSERT_MES(false, false, "Unsupported rct tx type: " + boost::lexical_cast<std::string>(rv.type)); |