Skip to content
Closed

ERC1363 #3017

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cleanup diff
  • Loading branch information
Amxx authored Feb 23, 2023
commit 3c0df204f87dda32c3e3a1e833d6e7fbe00207a4
2 changes: 1 addition & 1 deletion scripts/checks/inheritance-ordering.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ for (const artifact of artifacts) {
const linearized = [];

for (const source in solcOutput.contracts) {
if (['/mocks/', '/presets/'].some(skip => source.includes(skip))) {
if (source.includes('/mocks/')) {
continue;
}

Expand Down