1
0
mirror of https://github.com/bitcoin/bips.git synced 2025-05-12 12:03:29 +00:00

Merge pull request #1777 from vipocenka/fix/fix

BIP158: minor error message fixup in `gentestvectors.go`
This commit is contained in:
Jon Atack 2025-03-21 08:56:51 -06:00 committed by GitHub
commit 2fd67e5bd4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
// 5 blocks and collision space sizes of 1-32 bits. Change the RPC cert path
// and credentials to run on your system. The program assumes you're running
// a btcd with cfilter support, which mainline btcd doesn't have; in order to
// circumvent this assumption, comment out the if block that checks for
// circumvent this assumption, comment out the if block that checks the
// filter size of DefaultP.
package main
@ -193,7 +193,7 @@ func main() {
block, err := client.GetBlock(blockHash)
if err != nil {
fmt.Println("Couldn't get block hash: ", err.Error())
fmt.Println("Couldn't get block data: ", err.Error())
return
}