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 6a70bfd commit ebc6e73Copy full SHA for ebc6e73
src/chain/mod.rs
@@ -222,10 +222,8 @@ impl ChainSource {
222
223
impl Filter for ChainSource {
224
fn register_tx(&self, txid: &bitcoin::Txid, script_pubkey: &bitcoin::Script) {
225
- {
226
- match self {
227
- Self::Esplora { tx_sync, .. } => tx_sync.register_tx(txid, script_pubkey),
228
- }
+ match self {
+ Self::Esplora { tx_sync, .. } => tx_sync.register_tx(txid, script_pubkey),
229
}
230
231
fn register_output(&self, output: lightning::chain::WatchedOutput) {
0 commit comments