chore: rm leftover printlines (#4448)

### Description

Noticed these when I was debugging the scroll delivery issues

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
pull/4470/head
Daniel Savu 2 months ago committed by GitHub
parent d4204c6f0a
commit a75e84af4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      rust/chains/hyperlane-ethereum/src/rpc_clients/trait_builder.rs
  2. 12
      typescript/infra/config/environments/mainnet3/agent.ts

@ -213,13 +213,11 @@ pub trait BuildableWithProvider {
M: Middleware + 'static,
{
Ok(if let Some(signer) = signer {
println!("Building provider with signer");
let signing_provider = wrap_with_signer(provider, signer)
.await
.map_err(ChainCommunicationError::from_other)?;
self.build_with_provider(signing_provider, conn, locator)
} else {
println!("Building provider without signer");
self.build_with_provider(provider, conn, locator)
}
.await)

@ -372,7 +372,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '1cb1916-20240902-171411',
tag: '74a592e-20240906-191210',
},
gasPaymentEnforcement: gasPaymentEnforcement,
metricAppContexts,
@ -381,7 +381,7 @@ const hyperlane: RootAgentConfig = {
validators: {
docker: {
repo,
tag: '1cb1916-20240902-171411',
tag: '74a592e-20240906-191210',
},
rpcConsensusType: RpcConsensusType.Quorum,
chains: validatorChainConfig(Contexts.Hyperlane),
@ -391,7 +391,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '707db4a-20240828-164024',
tag: '74a592e-20240906-191210',
},
resources: scraperResources,
},
@ -406,7 +406,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '78b596e-20240813-123401',
tag: '74a592e-20240906-191210',
},
// We're temporarily (ab)using the RC relayer as a way to increase
// message throughput.
@ -418,7 +418,7 @@ const releaseCandidate: RootAgentConfig = {
validators: {
docker: {
repo,
tag: '0d12ff3-20240620-173353',
tag: '74a592e-20240906-191210',
},
rpcConsensusType: RpcConsensusType.Quorum,
chains: validatorChainConfig(Contexts.ReleaseCandidate),
@ -439,7 +439,7 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '707db4a-20240828-164024',
tag: '74a592e-20240906-191210',
},
gasPaymentEnforcement: [
{

Loading…
Cancel
Save