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 42a46c0 commit 0e75edbCopy full SHA for 0e75edb
src/index/bip352.h
@@ -62,6 +62,10 @@ class BIP352Index final : public BaseIndex
62
63
bool CustomAppend(const interfaces::BlockInfo& block) override;
64
65
+ std::any CustomProcessBlock(const interfaces::BlockInfo& block) override {
66
+ return CustomAppend(block);
67
+ }
68
+
69
BaseIndex::DB& GetDB() const override;
70
public:
71
@@ -70,6 +74,8 @@ class BIP352Index final : public BaseIndex
74
// Destructor is declared because this class contains a unique_ptr to an incomplete type.
75
virtual ~BIP352Index() override;
72
76
77
+ bool AllowParallelSync() override { return true; }
78
73
79
bool FindSilentPayment(const uint256& block_hash, tweak_index_entry& index_entry) const;
80
};
81
0 commit comments