Skip to content

Commit

Permalink
fix: support transactions separated by comma
Browse files Browse the repository at this point in the history
  • Loading branch information
madlabman committed Oct 16, 2024
1 parent 25b62e8 commit 09e3db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csm-alerts/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ async function parseArgs() {
blockIdentifier = parseInt(blockIdentifier)
}

const txIdentifier = process.env['FORTA_CLI_TX']
const txIdentifier = process.env['FORTA_CLI_TX']?.split(',')[0]
if (txIdentifier) {
const provider = await getProvider({
rpcUrl: RPC_URL,
Expand Down

0 comments on commit 09e3db5

Please sign in to comment.