forked from lthn/blockchain
wallet2: minor fix (catch an exception by reference, not but value)
This commit is contained in:
parent
f29492d98a
commit
4ac3c1645e
1 changed files with 1 additions and 1 deletions
|
|
@ -4572,7 +4572,7 @@ void wallet2::sweep_below(size_t fake_outs_count, const currency::account_public
|
|||
{
|
||||
finalize_transaction(ftp, tx, tx_key, false, false);
|
||||
}
|
||||
catch (error::tx_too_big)
|
||||
catch (error::tx_too_big&)
|
||||
{
|
||||
return rc_too_many_outputs;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue