Skip to content

Commit

Permalink
removing fork network as breaking
Browse files Browse the repository at this point in the history
  • Loading branch information
filippetroviccc committed Jun 27, 2022
1 parent 9da87d6 commit 017828d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/TenderlyNetwork.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ export class TenderlyNetwork {
if (!this.checkNetwork()) {
return;
}
if (!this.env.config.tenderly?.forkNetwork) {
return;
}

const username: string = this.env.config.tenderly.username;
const projectID: string = this.env.config.tenderly.project;
try {
Expand Down
2 changes: 1 addition & 1 deletion src/tenderly/types/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface BytecodeMismatchError {
export interface TenderlyConfig {
project: string;
username: string;
forkNetwork: string;
forkNetwork?: string;
privateVerification?: boolean;
deploymentsDir?: string;
}
Expand Down

0 comments on commit 017828d

Please sign in to comment.