aboutsummaryrefslogtreecommitdiff
path: root/src/blockchain_db
diff options
context:
space:
mode:
authorLuke Parker <lukeparker5132@gmail.com>2022-04-21 18:58:47 -0400
committerLuke Parker <lukeparker5132@gmail.com>2022-04-21 18:58:47 -0400
commitbaee2c06ec6178ceb7f3dfd85585eeb2bd65366c (patch)
tree7b74a09586248bba31384f4d315fff05d187b263 /src/blockchain_db
parentMerge pull request #8254 (diff)
downloadmonero-baee2c06ec6178ceb7f3dfd85585eeb2bd65366c.tar.xz
Preserve commitment format inside transactions
Diffstat (limited to 'src/blockchain_db')
-rw-r--r--src/blockchain_db/blockchain_db.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/blockchain_db/blockchain_db.cpp b/src/blockchain_db/blockchain_db.cpp
index 44be08003..ab73e255c 100644
--- a/src/blockchain_db/blockchain_db.cpp
+++ b/src/blockchain_db/blockchain_db.cpp
@@ -241,15 +241,8 @@ void BlockchainDB::add_transaction(const crypto::hash& blk_hash, const std::pair
}
else
{
- rct::key commitment;
- if (tx.version > 1)
- {
- commitment = tx.rct_signatures.outPk[i].mask;
- if (rct::is_rct_bulletproof_plus(tx.rct_signatures.type))
- commitment = rct::scalarmult8(commitment);
- }
amount_output_indices[i] = add_output(tx_hash, tx.vout[i], i, tx.unlock_time,
- tx.version > 1 ? &commitment : NULL);
+ tx.version > 1 ? &tx.rct_signatures.outPk[i].mask : NULL);
}
}
add_tx_amount_output_indices(tx_id, amount_output_indices);