Skip to content

Commit

Permalink
fix: fixing future self problem... merging
Browse files Browse the repository at this point in the history
  • Loading branch information
signorecello committed Mar 9, 2022
1 parent 32b2993 commit ab0b9f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/e2e/protocol/challenger.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ chai.use(chaiAsPromised);

const environment = config.ENVIRONMENTS[process.env.ENVIRONMENT] || config.ENVIRONMENTS.localhost;

const { signingKeys } = config.TEMPORARY_RESTRICTIONS;
const { signingKeys } = config.RESTRICTIONS;
const { mnemonics } = config.TEST_OPTIONS;

const bootChallenger = new Nf3(signingKeys.bootChallengerKey, environment);
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/protocol/proposer.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ chai.use(chaiAsPromised);

const environment = config.ENVIRONMENTS[process.env.ENVIRONMENT] || config.ENVIRONMENTS.localhost;

const { signingKeys } = config.TEMPORARY_RESTRICTIONS;
const { signingKeys } = config.RESTRICTIONS;
const { bond, gasCosts, mnemonics, signingKeys: testSigningKeys } = config.TEST_OPTIONS;

const bootProposer = new Nf3(signingKeys.bootProposerKey, environment);
Expand Down

0 comments on commit ab0b9f3

Please sign in to comment.