Skip to content

Commit ae24a60

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

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
@@ -7745,7 +7745,7 @@ bool simple_wallet::accept_loaded_tx(const tools::wallet2::signed_tx_set &txs)
77457745
extra_message = (boost::format("%u key images to import. ") % (unsigned)txs.key_images.size()).str();
77467746
return accept_loaded_tx(
77477747
[&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);},
7748+
[&txs](size_t n)->const auto&{return txs.ptx[n].construction_data;},
77497749
extra_message);
77507750
}
77517751
//----------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)