Skip to content

Commit

Permalink
(hub): correct trivial error in error in _matchNettedFlows
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminbollen committed Sep 30, 2024
1 parent 74a6435 commit a6cd3ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hub/Hub.sol
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ contract Hub is Circles, TypeDefinitions, IHubErrors {
for (uint16 i = 0; i < _streamsNettedFlow.length; i++) {
if (_streamsNettedFlow[i] != _matrixNettedFlow[i]) {
// Intended flow does not match verified flow.
revert CirclesHubNettedFlowMismatch(i, _streamsNettedFlow[i], _matrixNettedFlow[i]);
revert CirclesHubNettedFlowMismatch(i, _matrixNettedFlow[i], _streamsNettedFlow[i]);
}
}
}
Expand Down

0 comments on commit a6cd3ea

Please sign in to comment.