From dda0d2dd411cb3db6b0c0bb9380d7599f163acf4 Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Tue, 11 Aug 2020 11:56:20 -0700 Subject: [PATCH] Remove check_block Per discussion where @yaahc suggested that it would be simpler to delete this function entirely and treat it as an implementation detail. Co-authored-by: Jane Lusby --- book/src/dev/rfcs/XXXX-asynchronous-script-verification.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/book/src/dev/rfcs/XXXX-asynchronous-script-verification.md b/book/src/dev/rfcs/XXXX-asynchronous-script-verification.md index 6fd281c2..3f01557b 100644 --- a/book/src/dev/rfcs/XXXX-asynchronous-script-verification.md +++ b/book/src/dev/rfcs/XXXX-asynchronous-script-verification.md @@ -173,9 +173,6 @@ impl PendingUtxos { // if outpoint is a hashmap key, remove the entry and send output on the channel pub fn respond(&mut self, outpoint: OutPoint, output: TransparentOutput); - // extracts a list of new outputs from the block and checks them against the - // hashmap keys - pub fn check_block(&mut self, block: &Block); // scans the hashmap and removes any entries with closed senders pub fn prune(&mut self);