Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dimazhornyk committed Mar 15, 2024
1 parent 5175ffe commit 5c5e22b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contract TransactionFiltererFalse is ITransactionFilterer {
// add this to be excluded from coverage report
function test() internal virtual {}

function isTransactionAllowed(BridgehubL2TransactionRequest memory _) external view returns (bool) {
function isTransactionAllowed(BridgehubL2TransactionRequest memory) external view returns (bool) {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contract TransactionFiltererTrue is ITransactionFilterer {
// add this to be excluded from coverage report
function test() internal virtual {}

function isTransactionAllowed(BridgehubL2TransactionRequest memory _) external view returns (bool) {
function isTransactionAllowed(BridgehubL2TransactionRequest memory) external view returns (bool) {
return true;
}
}

0 comments on commit 5c5e22b

Please sign in to comment.