-
Notifications
You must be signed in to change notification settings - Fork 135
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
Add a new asserter client with ignoring rosetta spec validation. #502
Add a new asserter client with ignoring rosetta spec validation. #502
Conversation
asserter/asserter.go
Outdated
ignoreRosettaSpecValidation: true, | ||
} | ||
|
||
asserter.operationStatusMap = map[string]bool{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's move this to a const list in validation.go
asserter/operation_status.go
Outdated
@@ -0,0 +1,34 @@ | |||
// Copyright 2020 Coinbase, Inc. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2024???
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from what I saw, we have never changed copyright in asserter last 4 years. only those files in types, client, and server directories have been changed every year.
but anyway, I just changed all files which have copyright 2020.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work!
Review Error for xiaying-peng @ 2024-02-05 19:56:08 UTC |
Review Error for xiaying-peng @ 2024-02-05 19:56:33 UTC |
Fixes # .
Motivation
in somecases, rosetta spec validation is not helpful, and it causes some operation work, so now we add a new client which can ignore rosetta spec validation.
Solution
Open questions