We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce30a2e commit e01daacCopy full SHA for e01daac
1 file changed
src/wallet/vtxo-manager.ts
@@ -863,6 +863,17 @@ export class VtxoManager implements AsyncDisposable {
863
}
864
865
this.renewVtxos().catch((e) => {
866
+ if (e instanceof Error) {
867
+ if (e.message.includes("No VTXOs available to renew")) {
868
+ // Not an error, just no VTXO eligible for renewal.
869
+ return;
870
+ }
871
+ if (e.message.includes("is below dust threshold")) {
872
+ // Not an error, just below dust threshold.
873
+ // As more VTXOs are received, the threshold will be raised.
874
875
876
877
console.error("Error renewing VTXOs:", e);
878
});
879
delegatorManager
0 commit comments