fixed InProofV3 calcs / checks

This commit is contained in:
Some Random Crypto Guy
2025-12-08 16:36:12 +00:00
parent 10b58aac73
commit 305b92909e
9 changed files with 313 additions and 66 deletions
+2 -2
View File
@@ -284,8 +284,8 @@ namespace hw {
void device_default::generate_carrot_tx_proof(const crypto::hash &prefix_hash,
const crypto::public_key &R, const crypto::public_key &A, const boost::optional<crypto::public_key> &B, const crypto::public_key &D, const crypto::secret_key &r,
crypto::signature &sig) {
crypto::generate_carrot_tx_proof(prefix_hash, R, A, B, D, r, sig);
const crypto::secret_key &a, crypto::signature &sig) {
crypto::generate_carrot_tx_proof(prefix_hash, R, A, B, D, r, a, sig);
}
bool device_default::open_tx(crypto::secret_key &tx_key) {