Skip to content

Commit

Permalink
Order is affecting to some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yagopv committed May 8, 2024
1 parent f53cf40 commit aadd21b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/protocol-kit/hardhat/deploy/deploy-contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,48 +155,48 @@ const deploy: DeployFunction = async (hre: HardhatRuntimeEnvironment): Promise<v
deterministicDeployment: true
})

await deploy('StateChannelModule', {
await deploy('ERC20Mintable', {
from: deployer,
args: [],
log: true,
deterministicDeployment: true
log: true
})

await deploy('WhitelistModule', {
await deploy('DebugTransactionGuard_SV1_3_0', {
from: deployer,
args: [],
log: true,
deterministicDeployment: true
})

await deploy('ERC20Mintable', {
await deploy('DefaultCallbackHandler_SV1_3_0', {
from: deployer,
args: [],
log: true
log: true,
deterministicDeployment: true
})

await deploy('DebugTransactionGuard_SV1_3_0', {
await deploy('DebugTransactionGuard_SV1_4_1', {
from: deployer,
args: [],
log: true,
deterministicDeployment: true
})

await deploy('DefaultCallbackHandler_SV1_3_0', {
await deploy('TokenCallbackHandler_SV1_4_1', {
from: deployer,
args: [],
log: true,
deterministicDeployment: true
})

await deploy('DebugTransactionGuard_SV1_4_1', {
await deploy('StateChannelModule', {
from: deployer,
args: [],
log: true,
deterministicDeployment: true
})

await deploy('TokenCallbackHandler_SV1_4_1', {
await deploy('WhitelistModule', {
from: deployer,
args: [],
log: true,
Expand Down

0 comments on commit aadd21b

Please sign in to comment.