From 9de0376daa008e5f612a5686684c66365cf677d5 Mon Sep 17 00:00:00 2001 From: Philipp Hoenisch Date: Fri, 8 Oct 2021 10:04:43 +1100 Subject: [PATCH] Bug fix: Remove pending roll over requests Otherwise the UI won't update --- daemon/src/taker_cfd.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/daemon/src/taker_cfd.rs b/daemon/src/taker_cfd.rs index fe40288..c6a5231 100644 --- a/daemon/src/taker_cfd.rs +++ b/daemon/src/taker_cfd.rs @@ -407,6 +407,8 @@ impl Actor { .await }); + self.remove_pending_proposal(&order_id) + .context("Could not remove accepted roll over")?; Ok(()) }