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 2340750 commit 1d765ddCopy full SHA for 1d765dd
dash-spv/src/client/queries.rs
@@ -78,6 +78,10 @@ impl<
78
quorum_type: LLMQType,
79
quorum_hash: QuorumHash,
80
) -> Result<QualifiedQuorumEntry> {
81
+ // Reverse the quorum hash bytes for lookup
82
+ // DAPI returns BE in `ResponseMetadata`, but we store as LE
83
+ let quorum_hash = quorum_hash.reverse();
84
+
85
// First check if we have the masternode list at this height
86
match self.get_masternode_list_at_height(height) {
87
Some(ml) => {
0 commit comments