mirror of
https://github.com/monero-project/monero.git
synced 2025-08-23 14:35:03 -04:00
Fix boost <1.60 compilation and fix boost 1.73+ warnings
This commit is contained in:
parent
7e78da7772
commit
7aeb503547
13 changed files with 35 additions and 31 deletions
|
@ -947,7 +947,7 @@ uint32_t get_subaddress_clamped_sum(uint32_t idx, uint32_t extra)
|
|||
|
||||
static void setup_shim(hw::wallet_shim * shim, tools::wallet2 * wallet)
|
||||
{
|
||||
shim->get_tx_pub_key_from_received_outs = boost::bind(&tools::wallet2::get_tx_pub_key_from_received_outs, wallet, _1);
|
||||
shim->get_tx_pub_key_from_received_outs = std::bind(&tools::wallet2::get_tx_pub_key_from_received_outs, wallet, std::placeholders::_1);
|
||||
}
|
||||
|
||||
bool get_pruned_tx(const cryptonote::COMMAND_RPC_GET_TRANSACTIONS::entry &entry, cryptonote::transaction &tx, crypto::hash &tx_hash)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue