-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ Implement initialization of fault detector
♻️ Update config and improve main.go ♻️ Multiple improvements based on feedback - Improve usage of logging - Fix incorrect go routine usage - Improve app struct - Install latest version of optimism for bindings ♻️ Apply feedback - Add error to logs within the fault detector service - Declare compiled regular expressions as var - Fix the usage of quit channel for ticker - Use uint64 for faultProofWindow and currentOutputIndex ♻️ Apply feedbacks - Make regex vars private - Declare quitTickerChan as struct ♻️ Create app struct and implement start/stop
- Loading branch information
Showing
9 changed files
with
483 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.1.0", | ||
"configurations": [ | ||
{ | ||
"name": "Run Fault Detector", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "auto", | ||
"program": "${workspaceRoot}/cmd", | ||
"args": ["--config", "./config.yaml"], | ||
"showLog": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.