Skip to content

Commit

Permalink
Enable soak
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcauchi committed Sep 15, 2023
1 parent bb60cd8 commit 9973eab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/on-demand-ocr-soak-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ on:
- "BSC_MAINNET"
- "BSC_TESTNET"
- "SCROLL_SEPOLIA"
- "SCROLL_MAINNET"
- "SCROLL_MAINNET"
- "MANTLE_GOERLI"
- "MANTLE_MAINNET"
fundingPrivateKey:
description: Private funding key (Skip for Simulated)
required: false
Expand Down
6 changes: 6 additions & 0 deletions integration-tests/contracts/contract_deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ func NewContractDeployer(bcClient blockchain.EVMClient, logger zerolog.Logger) (
return &BSCContractDeployer{NewEthereumContractDeployer(clientImpl, logger)}, nil
case *blockchain.ScrollClient:
return &ScrollContractDeployer{NewEthereumContractDeployer(clientImpl, logger)}, nil
case *blockchain.MantleClient:
return &MantleContractDeployer{NewEthereumContractDeployer(clientImpl, logger)}, nil
}
return nil, errors.New("unknown blockchain client implementation for contract deployer, register blockchain client in NewContractDeployer")
}
Expand Down Expand Up @@ -196,6 +198,10 @@ type ScrollContractDeployer struct {
*EthereumContractDeployer
}

type MantleContractDeployer struct {
*EthereumContractDeployer
}

// NewEthereumContractDeployer returns an instantiated instance of the ETH contract deployer
func NewEthereumContractDeployer(ethClient blockchain.EVMClient, logger zerolog.Logger) *EthereumContractDeployer {
return &EthereumContractDeployer{
Expand Down

0 comments on commit 9973eab

Please sign in to comment.