Skip to content

Commit b9a6c8b

Browse files
fix(dash-spv): align quorum list error text
1 parent 720fa28 commit b9a6c8b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

dash-spv/src/client/queries.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,10 @@ impl<W: WalletInterface, N: NetworkManager, S: StorageManager> DashSpvClient<W,
119119
"No masternode list found at or before height {} - cannot retrieve quorum",
120120
height
121121
);
122-
Err(SpvError::QuorumLookupError(format!("No masternode list found at height {}", height)))
122+
Err(SpvError::QuorumLookupError(format!(
123+
"No masternode list found at or before height {}",
124+
height
125+
)))
123126
}
124127

125128
// ============ Balance Queries ============

0 commit comments

Comments
 (0)