mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
wallet2: add missing "sanity check failed" reason message
This commit is contained in:
parent
475481949a
commit
b386ae5725
1 changed files with 2 additions and 0 deletions
|
@ -221,6 +221,8 @@ namespace
|
||||||
add_reason(reason, "fee too low");
|
add_reason(reason, "fee too low");
|
||||||
if (res.not_rct)
|
if (res.not_rct)
|
||||||
add_reason(reason, "tx is not ringct");
|
add_reason(reason, "tx is not ringct");
|
||||||
|
if (res.sanity_check_failed)
|
||||||
|
add_reason(reason, "tx sanity check failed");
|
||||||
if (res.not_relayed)
|
if (res.not_relayed)
|
||||||
add_reason(reason, "tx was not relayed");
|
add_reason(reason, "tx was not relayed");
|
||||||
return reason;
|
return reason;
|
||||||
|
|
Loading…
Reference in a new issue