diff --git a/src/swapd/state_report.rs b/src/swapd/state_report.rs index ac545612e..31bb1763c 100644 --- a/src/swapd/state_report.rs +++ b/src/swapd/state_report.rs @@ -32,6 +32,9 @@ pub struct StateReport { pub arb_lock_confirmations: Option, pub acc_lock_confirmations: Option, pub cancel_confirmations: Option, + pub refund_confirmations: Option, + pub punish_confirmations: Option, + pub buy_confirmations: Option, pub blocks_until_cancel_possible: Option, pub blocks_until_punish_possible: Option, pub blocks_until_safe_buy: Option, @@ -66,6 +69,9 @@ impl StateReport { arb_lock_confirmations: syncer_state.get_confs(TxLabel::Lock), acc_lock_confirmations: syncer_state.get_confs(TxLabel::AccLock), cancel_confirmations: syncer_state.get_confs(TxLabel::Cancel), + refund_confirmations: syncer_state.get_confs(TxLabel::Refund), + punish_confirmations: syncer_state.get_confs(TxLabel::Punish), + buy_confirmations: syncer_state.get_confs(TxLabel::Buy), blocks_until_cancel_possible: syncer_state .get_confs(TxLabel::Lock) .map(|confs| temp_safety.blocks_until_cancel(confs)),