nit: Comment in blind_tests.cpp was wrong

This commit is contained in:
Steven Roose 2020-03-17 17:32:41 +00:00
parent e87b390409
commit c780a51864
No known key found for this signature in database
GPG key ID: 2F2A88D7F8D68E87

View file

@ -273,7 +273,7 @@ BOOST_AUTO_TEST_CASE(naive_blinding_test)
uint64_t max_value = 0;
BOOST_CHECK(secp256k1_rangeproof_info(ctx, &exp, &mantissa, &min_value, &max_value, tx4.witness.vtxoutwit[2].vchRangeproof.data(), proof_size) == 1);
BOOST_CHECK_EQUAL(exp, 0);
BOOST_CHECK_EQUAL(mantissa, 52); // 36 bit default
BOOST_CHECK_EQUAL(mantissa, 52); // 52 bit default
BOOST_CHECK_EQUAL(min_value, 1);
BOOST_CHECK_EQUAL(max_value, 4503599627370496);
}