Use only taproot scripts for mempool golomb filter

This commit is contained in:
Martin Boehm
2023-05-09 09:06:13 +02:00
parent c8c7e08a18
commit 3ab5e636ff
6 changed files with 284 additions and 125 deletions

View File

@@ -19,7 +19,7 @@ func NewFakeBlockChain(parser bchain.BlockChainParser) (bchain.BlockChain, error
}
func (c *fakeBlockChain) CreateMempool(chain bchain.BlockChain) (bchain.Mempool, error) {
return bchain.NewMempoolBitcoinType(chain, 1, 1, 0), nil
return bchain.NewMempoolBitcoinType(chain, 1, 1, 0, ""), nil
}
func (c *fakeBlockChain) Initialize() error {