We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 151fddf commit e12241bCopy full SHA for e12241b
rebalance/rebalance.py
@@ -535,10 +535,12 @@ def rebalance(
535
erring_channel = e.error.get("data", {}).get("erring_channel")
536
erring_direction = e.error.get("data", {}).get("erring_direction")
537
if erring_channel == incoming_scid:
538
+ plugin.log(f"Error with incoming channel: {e}")
539
raise RpcError(
540
"rebalance", payload, {"message": "Error with incoming channel"}
541
)
542
if erring_channel == outgoing_scid:
543
+ plugin.log(f"Error with outgoing channel: {e}")
544
545
"rebalance", payload, {"message": "Error with outgoing channel"}
546
0 commit comments