Fix rescan to invalid blockchain height bug (#48)

This commit is contained in:
Lee *!* Clagett
2023-02-10 07:18:50 -05:00
committed by Lee *!* Clagett
parent aff7603519
commit 64f5d4a9ab
3 changed files with 21 additions and 0 deletions

View File

@@ -57,6 +57,8 @@ namespace lws
return "Received invalid transaction from REST client";
case error::bad_daemon_response:
return "Response from monerod daemon was bad/unexpected";
case error::bad_height:
return "Invalid blockchain height";
case error::blockchain_reorg:
return "A blockchain reorg has been detected";
case error::configuration: