mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 21:23:27 +01:00
blockchain_blackball: use mdb_size_t where appropriate
This commit is contained in:
parent
b1f05f589e
commit
db3db0930e
@ -558,7 +558,7 @@ static std::vector<output_data> get_spent_outputs(MDB_txn *txn)
|
|||||||
int dbr = mdb_cursor_open(txn, dbi_spent, &cur);
|
int dbr = mdb_cursor_open(txn, dbi_spent, &cur);
|
||||||
CHECK_AND_ASSERT_THROW_MES(!dbr, "Failed to open cursor for spent outputs: " + std::string(mdb_strerror(dbr)));
|
CHECK_AND_ASSERT_THROW_MES(!dbr, "Failed to open cursor for spent outputs: " + std::string(mdb_strerror(dbr)));
|
||||||
MDB_val k, v;
|
MDB_val k, v;
|
||||||
uint64_t count = 0;
|
mdb_size_t count = 0;
|
||||||
dbr = mdb_cursor_get(cur, &k, &v, MDB_FIRST);
|
dbr = mdb_cursor_get(cur, &k, &v, MDB_FIRST);
|
||||||
if (dbr != MDB_NOTFOUND)
|
if (dbr != MDB_NOTFOUND)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user