diff --git a/core/chains/evm/config/toml/defaults/Bttc_Testnet.toml b/core/chains/evm/config/toml/defaults/Bttc_Testnet.toml index 839fe176faf..d61952827d3 100644 --- a/core/chains/evm/config/toml/defaults/Bttc_Testnet.toml +++ b/core/chains/evm/config/toml/defaults/Bttc_Testnet.toml @@ -6,13 +6,11 @@ LogPollInterval = '2s' [GasEstimator] EIP1559DynamicFees = false -PriceDefault = '10 mwei' +PriceDefault = '15 mwei' PriceMin = '9 mwei' -BumpPercent = 20 [GasEstimator.BlockHistory] # how many blocks we want to keep in memory to calculate gas price -# # Average block time of 2s BlockHistorySize = 24 [Transactions] diff --git a/integration-tests/contracts/contract_deployer.go b/integration-tests/contracts/contract_deployer.go index 57c5d7a4aed..a73f9fbef43 100644 --- a/integration-tests/contracts/contract_deployer.go +++ b/integration-tests/contracts/contract_deployer.go @@ -182,7 +182,7 @@ func NewContractDeployer(bcClient blockchain.EVMClient, logger zerolog.Logger) ( case *blockchain.WeMixClient: return &WeMixContractDeployer{NewEthereumContractDeployer(clientImpl, logger)}, nil case *blockchain.BttcClient: - return &WeMixContractDeployer{NewEthereumContractDeployer(clientImpl, logger)}, nil + return &BttcContractDeployer{NewEthereumContractDeployer(clientImpl, logger)}, nil } return nil, errors.New("unknown blockchain client implementation for contract deployer, register blockchain client in NewContractDeployer") } @@ -510,6 +510,7 @@ func (e *EthereumContractDeployer) DeployLinkTokenContract() (LinkToken, error) auth *bind.TransactOpts, backend bind.ContractBackend, ) (common.Address, *types.Transaction, interface{}, error) { + log.Info().Msg(fmt.Sprintf("SISHIRR: %d, %d, %d, %s", auth.GasLimit, auth.GasPrice.Uint64(), auth.GasTipCap.Uint64(), auth.From)) return link_token_interface.DeployLinkToken(auth, backend) }) if err != nil {