Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Update ET executed text #409

Merged
merged 2 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ exports[`agent-easy-track e2e tests should process tx with executed motion 1`] =
Finding {
"addresses": Array [],
"alertId": "EASY-TRACK-MOTION-ENACTED",
"description": "EasyTrack motion 362 was enacted",
"description": "EasyTrack motion 495 was enacted",
"labels": Array [],
"metadata": Object {
"args": "362",
"args": "495",
},
"name": "✅ EasyTrack: Motion executed",
"name": "✅ EasyTrack: Motion executed successfully 🎉",
"protocol": "ethereum",
"severity": 1,
"type": 4,
Expand Down
2 changes: 1 addition & 1 deletion ethereum-governance/e2e/agent-easy-track.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe("agent-easy-track e2e tests", () => {
"should process tx with executed motion",
async () => {
const findings = await runTransaction(
"0x9bbabb4891f324def5a0b073d89babaf7db84eb89d43afa46319ae7b377048c1",
"0x4f0b1a48a364bed1699979b581908f1f96396fc42b16fad066fa68d002a49580",
);
expect(findings.at(0)).toMatchSnapshot();
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const EASY_TRACK_EVENTS_OF_NOTICE = [
address: EASY_TRACK_ADDRESS,
event: MOTION_ENACTED_EVENT,
alertId: "EASY-TRACK-MOTION-ENACTED",
name: "✅ EasyTrack: Motion executed",
name: "✅ EasyTrack: Motion executed successfully 🎉",
description: (args: any) =>
`EasyTrack motion ${args._motionId} was enacted`,
severity: FindingSeverity.Info,
Expand Down