From 6a9144f7a1c8076f7643d4c3ea3b853bba27f91d Mon Sep 17 00:00:00 2001 From: Lucas Soriano del Pino Date: Tue, 12 Oct 2021 13:52:24 +1100 Subject: [PATCH] Make monitor::Cet private It is only needed internally and it was giving the wrong impression when it was declared as public. --- daemon/src/monitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/src/monitor.rs b/daemon/src/monitor.rs index 24e6670..9417e9e 100644 --- a/daemon/src/monitor.rs +++ b/daemon/src/monitor.rs @@ -24,7 +24,7 @@ pub struct StartMonitoring { } #[derive(Clone)] -pub struct Cet { +struct Cet { txid: Txid, script: Script, range: RangeInclusive,