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 8d6ffe3 commit 7031ffbCopy full SHA for 7031ffb
stacks-signer/src/signerdb.rs
@@ -2210,7 +2210,7 @@ pub mod tests {
2210
db.add_block_signature(&block_id, &address2, &sig2).unwrap();
2211
assert_eq!(
2212
db.get_block_signatures(&block_id).unwrap(),
2213
- vec![sig1, sig2]
+ vec![sig2, sig1]
2214
);
2215
}
2216
@@ -2269,8 +2269,8 @@ pub mod tests {
2269
2270
db.get_block_rejection_signer_addrs(&block_id).unwrap(),
2271
vec![
2272
+ (address2, RejectReasonPrefix::InvalidParentBlock),
2273
(address1, RejectReasonPrefix::DuplicateBlockFound),
- (address2, RejectReasonPrefix::InvalidParentBlock)
2274
]
2275
2276
0 commit comments