This repository was archived by the owner on Jan 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -509,19 +509,19 @@ where
509
509
C :: Target : Filter ,
510
510
{
511
511
fn transactions_confirmed (
512
- & self , header : & bitcoin:: block:: Header , txdata : & chain:: transaction:: TransactionData ,
513
- height : u32 ,
512
+ & self , _header : & bitcoin:: block:: Header , _txdata : & chain:: transaction:: TransactionData ,
513
+ _height : u32 ,
514
514
) {
515
515
// TODO: Call transactions_confirmed on all sub-modules that require it, e.g., LSPS1MessageHandler.
516
516
}
517
517
518
- fn transaction_unconfirmed ( & self , txid : & bitcoin:: Txid ) {
518
+ fn transaction_unconfirmed ( & self , _txid : & bitcoin:: Txid ) {
519
519
// TODO: Call transaction_unconfirmed on all sub-modules that require it, e.g., LSPS1MessageHandler.
520
520
// Internally this should call transaction_unconfirmed for all transactions that were
521
521
// confirmed at a height <= the one we now unconfirmed.
522
522
}
523
523
524
- fn best_block_updated ( & self , header : & bitcoin:: block:: Header , height : u32 ) {
524
+ fn best_block_updated ( & self , _header : & bitcoin:: block:: Header , _height : u32 ) {
525
525
// TODO: Call best_block_updated on all sub-modules that require it, e.g., LSPS1MessageHandler.
526
526
}
527
527
You can’t perform that action at this time.
0 commit comments