We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d3b3858 + 07bc5ff commit fe40983Copy full SHA for fe40983
libraries/wallet/wallet.cpp
@@ -1872,8 +1872,8 @@ blind_receipt wallet_api::receive_blind_transfer( const string& confirmation_rec
1872
result.memo = opt_memo;
1873
1874
// confirm the amount matches the commitment (verify the blinding factor)
1875
- auto commtiment_test = fc::ecc::blind( memo.blinding_factor, memo.amount.amount.value );
1876
- FC_ASSERT( fc::ecc::verify_sum( {commtiment_test}, {memo.commitment}, 0 ) );
+ auto commitment_test = fc::ecc::blind( memo.blinding_factor, memo.amount.amount.value );
+ FC_ASSERT( fc::ecc::verify_sum( {commitment_test}, {memo.commitment}, 0 ) );
1877
1878
blind_balance bal;
1879
bal.amount = memo.amount;
0 commit comments