Skip to content

Commit bb915d9

Browse files
committed
carrot+fcmp: fix SW accept func for carrot signed tx
1 parent b37a020 commit bb915d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/simplewallet/simplewallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7747,7 +7747,7 @@ bool simple_wallet::accept_loaded_tx(const tools::wallet2::signed_tx_set &txs)
77477747
extra_message = (boost::format("%u key images to import. ") % (unsigned)txs.key_images.size()).str();
77487748
return accept_loaded_tx(
77497749
[&txs](){return txs.ptx.size();},
7750-
[&txs](size_t n)->const auto&{return std::get<tools::wallet2::tx_construction_data>(txs.ptx[n].construction_data);},
7750+
[&txs](size_t n)->const auto&{return txs.ptx[n].construction_data;},
77517751
extra_message);
77527752
}
77537753
//----------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)