Skip to content

Commit

Permalink
added new info
Browse files Browse the repository at this point in the history
  • Loading branch information
stackman27 committed Dec 13, 2023
1 parent 17a7cd8 commit 9826deb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 1 addition & 3 deletions core/chains/evm/config/toml/defaults/Bttc_Testnet.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
3 changes: 2 additions & 1 deletion integration-tests/contracts/contract_deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 9826deb

Please sign in to comment.