Return lws::error::not_enough_amount when received is less than requested amount (#154)

This commit is contained in:
everoddandeven
2025-04-19 05:20:00 +02:00
committed by Lee *!* Clagett
parent 450fc0b2cc
commit 4e85e3c828
3 changed files with 5 additions and 2 deletions

View File

@@ -95,6 +95,8 @@ namespace lws
return "Max subaddresses exceeded";
case error::not_enough_mixin:
return "Not enough outputs to meet requested mixin count";
case error::not_enough_amount:
return "Not enough outputs to meet requested amount";
case error::signal_abort_process:
return "An in-process message was received to abort the process";
case error::signal_abort_scan: