Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Try sync main changes (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
aurexav authored Sep 29, 2022
1 parent b03a039 commit 4289ab1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/messages/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ pub fn unrewarded_relayer(
begin,
end,
dispatch_results: if end >= begin {
bitvec![u8, Msb0; 1; (end - begin + 1) as _]
bitvec![Msb0, u8; 1; (end - begin + 1) as _]
} else {
Default::default()
},
Expand Down
2 changes: 1 addition & 1 deletion modules/messages/src/outbound_lane.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ mod tests {
DeliveredMessages {
begin: *nonces.start(),
end: *nonces.end(),
dispatch_results: bitvec![u8, Msb0; 1; (nonces.end() - nonces.start() + 1) as _],
dispatch_results: bitvec![Msb0, u8; 1; (nonces.end() - nonces.start() + 1) as _],
}
}

Expand Down

0 comments on commit 4289ab1

Please sign in to comment.