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.
1 parent 1c2ba85 commit ae24a60Copy full SHA for ae24a60
src/simplewallet/simplewallet.cpp
@@ -7745,7 +7745,7 @@ bool simple_wallet::accept_loaded_tx(const tools::wallet2::signed_tx_set &txs)
7745
extra_message = (boost::format("%u key images to import. ") % (unsigned)txs.key_images.size()).str();
7746
return accept_loaded_tx(
7747
[&txs](){return txs.ptx.size();},
7748
- [&txs](size_t n)->const auto&{return std::get<tools::wallet2::tx_construction_data>(txs.ptx[n].construction_data);},
+ [&txs](size_t n)->const auto&{return txs.ptx[n].construction_data;},
7749
extra_message);
7750
}
7751
//----------------------------------------------------------------------------------------------------
0 commit comments