From 946e220edfd297aa8da4f6682d7b7ae19a11fa86 Mon Sep 17 00:00:00 2001 From: Asa Oines Date: Wed, 27 Jul 2022 21:09:29 -0400 Subject: [PATCH] Changes to address alerts (#836) --- typescript/helloworld/src/app/app.ts | 2 +- typescript/infra/config/environments/mainnet/funding.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/helloworld/src/app/app.ts b/typescript/helloworld/src/app/app.ts index b6c8a4a1d..98ea02d9f 100644 --- a/typescript/helloworld/src/app/app.ts +++ b/typescript/helloworld/src/app/app.ts @@ -31,7 +31,7 @@ export class HelloWorldApp< message, chainConnection.overrides, ); - const gasLimit = estimated.mul(11).div(10); + const gasLimit = estimated.mul(12).div(10); const tx = await sender.sendHelloWorld(toDomain, message, { ...chainConnection.overrides, diff --git a/typescript/infra/config/environments/mainnet/funding.ts b/typescript/infra/config/environments/mainnet/funding.ts index 3b5cb22d9..bec7ddf39 100644 --- a/typescript/infra/config/environments/mainnet/funding.ts +++ b/typescript/infra/config/environments/mainnet/funding.ts @@ -7,7 +7,7 @@ export const relayerFunderConfig: RelayerFunderConfig = { repo: 'gcr.io/abacus-labs-dev/abacus-monorepo', tag: 'sha-63f7341', }, - cronSchedule: '*/10 * * * *', // Every 10 minutes + cronSchedule: '45 * * * *', // Every hour at the 45 minute mark namespace: environment, prometheusPushGateway: 'http://prometheus-pushgateway.monitoring.svc.cluster.local:9091',