mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
LogPrints need \n
This commit is contained in:
parent
b4c9ccb8fb
commit
242515fd63
1 changed files with 2 additions and 2 deletions
|
|
@ -2814,7 +2814,7 @@ bool fillBlindDetails(BlindDetails* det, CWallet* wallet, CMutableTransaction& t
|
||||||
det->o_pubkeys[det->only_recipient_blind_index] = CPubKey();
|
det->o_pubkeys[det->only_recipient_blind_index] = CPubKey();
|
||||||
det->o_amount_blinds[det->only_recipient_blind_index] = uint256();
|
det->o_amount_blinds[det->only_recipient_blind_index] = uint256();
|
||||||
det->o_asset_blinds[det->only_recipient_blind_index] = uint256();
|
det->o_asset_blinds[det->only_recipient_blind_index] = uint256();
|
||||||
wallet->WalletLogPrintf("Unblinding single blinded output at index %d due to lack of inputs and other outputs being blinded.", det->only_recipient_blind_index);
|
wallet->WalletLogPrintf("Unblinding single blinded output at index %d due to lack of inputs and other outputs being blinded.\n", det->only_recipient_blind_index);
|
||||||
} else {
|
} else {
|
||||||
strFailReason = _("Transaction output could not be blinded as there are no blinded inputs and no other blinded outputs.");
|
strFailReason = _("Transaction output could not be blinded as there are no blinded inputs and no other blinded outputs.");
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -3551,7 +3551,7 @@ bool CWallet::CreateTransaction(const std::vector<CRecipient>& vecSend, CTransac
|
||||||
tx->vout[i].nAsset.IsExplicit() ? "explicit" : "blinded"
|
tx->vout[i].nAsset.IsExplicit() ? "explicit" : "blinded"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
WalletLogPrintf(summary);
|
WalletLogPrintf(summary+"\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue