Cleans the wallet awaiting confirmation when destination is incorrect. Fix #900 (#902)

This commit is contained in:
Quentin Le Sceller 2018-03-28 12:36:10 -04:00 committed by Ignotus Peverell
parent bfb3505183
commit b4308e9075

View file

@ -119,6 +119,10 @@ pub fn issue_send_tx(
} else */
if &dest[..4] != "http" {
WalletData::with_wallet(&config.data_file_dir, |wallet_data| {
info!(LOGGER, "cleaning up unused change output from wallet");
wallet_data.delete_output(&change_key);
});
panic!(
"dest formatted as {} but send -d expected stdout or http://IP:port",
dest