File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1041,12 +1041,14 @@ where
10411041 Ok ( ( _block_hash, monitor) ) => monitor,
10421042 Err ( _) => return ,
10431043 } ;
1044- let primary = CHANNEL_MONITOR_PERSISTENCE_PRIMARY_NAMESPACE ;
1045- let secondary = CHANNEL_MONITOR_PERSISTENCE_SECONDARY_NAMESPACE ;
1044+ let primary = ARCHIVED_CHANNEL_MONITOR_PERSISTENCE_PRIMARY_NAMESPACE ;
1045+ let secondary = ARCHIVED_CHANNEL_MONITOR_PERSISTENCE_SECONDARY_NAMESPACE ;
10461046 match self . kv_store . write ( primary, secondary, & monitor_key, monitor. encode ( ) ) . await {
10471047 Ok ( ( ) ) => { } ,
10481048 Err ( _e) => return ,
10491049 } ;
1050+ let primary = CHANNEL_MONITOR_PERSISTENCE_PRIMARY_NAMESPACE ;
1051+ let secondary = CHANNEL_MONITOR_PERSISTENCE_SECONDARY_NAMESPACE ;
10501052 let _ = self . kv_store . remove ( primary, secondary, & monitor_key, true ) . await ;
10511053 }
10521054
You can’t perform that action at this time.
0 commit comments