1
0
Fork 0
forked from lthn/blockchain

an attempt to fix macos compilation

This commit is contained in:
sowle 2024-04-04 16:34:43 +02:00
parent 59f38273e3
commit 9cd8e88ab4
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -818,7 +818,7 @@ namespace tools
res.fee_spent = 0;
res.txs_sent = 0;
w.get_wallet()->sweep_bare_unspent_outputs(w.get_wallet()->get_account().get_public_address(), groups, res.txs_sent, res.amount_swept, res.fee_spent, res.bare_outs_swept);
w.get_wallet()->sweep_bare_unspent_outputs(w.get_wallet()->get_account().get_public_address(), groups, static_cast<size_t&>(res.txs_sent), res.amount_swept, res.fee_spent, res.bare_outs_swept);
return true;
WALLET_RPC_CATCH_TRY_ENTRY();