Skip to content

Commit 5d3de1d

Browse files
committed
test: add (TEST) to all alert strings
1 parent 67139bf commit 5d3de1d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
export const NO_CREATION_EVENTS_ALERT = `No assertion creation events found`
1+
export const NO_CREATION_EVENTS_ALERT = `No assertion creation events found (TEST)`
22

3-
export const CHAIN_ACTIVITY_WITHOUT_ASSERTIONS_ALERT = `Chain activity detected, but no assertions created in the last 4 hours`
3+
export const CHAIN_ACTIVITY_WITHOUT_ASSERTIONS_ALERT = `Chain activity detected, but no assertions created in the last 4 hours (TEST)`
44

5-
export const NO_CONFIRMATION_EVENTS_ALERT = `No assertion confirmation events found`
5+
export const NO_CONFIRMATION_EVENTS_ALERT = `No assertion confirmation events found (TEST)`
66

7-
export const CONFIRMATION_DELAY_ALERT = `Confirmation period exceeded`
7+
export const CONFIRMATION_DELAY_ALERT = `Confirmation period exceeded (TEST)`
88

9-
export const CREATION_EVENT_STUCK_ALERT = `Assertion event stuck in challenge period`
9+
export const CREATION_EVENT_STUCK_ALERT = `Assertion event stuck in challenge period (TEST)`
1010

11-
export const NON_BOLD_NO_RECENT_CREATION_ALERT = `No recent node creation events detected for non-BOLD chain`
11+
export const NON_BOLD_NO_RECENT_CREATION_ALERT = `No recent node creation events detected for non-BOLD chain (TEST)`
1212

13-
export const VALIDATOR_WHITELIST_DISABLED_ALERT = `Validator whitelist disabled - this may indicate security concerns for Classic chains`
13+
export const VALIDATOR_WHITELIST_DISABLED_ALERT = `Validator whitelist disabled - this may indicate security concerns for Classic chains (TEST)`
1414

15-
export const BOLD_LOW_BASE_STAKE_ALERT = `BoLD chain has low base stake (below 1 ETH) which may indicate restricted validation`
15+
export const BOLD_LOW_BASE_STAKE_ALERT = `BoLD chain has low base stake (below 1 ETH) which may indicate restricted validation (TEST)`
1616

17-
export const NO_CONFIRMATION_BLOCKS_WITH_CONFIRMATION_EVENTS_ALERT = `No assertion confirmation blocks found but confirmation events detected`
17+
export const NO_CONFIRMATION_BLOCKS_WITH_CONFIRMATION_EVENTS_ALERT = `No assertion confirmation blocks found but confirmation events detected (TEST)`

packages/assertion-monitor/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export const main = async () => {
185185
}
186186

187187
if (alerts.length > 0) {
188-
const alertMessage = `Assertion Monitor Alert Summary:\n\n${alerts.join(
188+
const alertMessage = `Assertion Monitor Alert Summary (TEST CHANGE):\n\n${alerts.join(
189189
'\n\n'
190190
)}`
191191
console.log(alertMessage)

0 commit comments

Comments
 (0)