We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, subspace has Custom error codes in 3 different locations, which has led to clashes multiple times: (including 200 here)
Custom
200
subspace/domains/primitives/runtime/src/lib.rs
Lines 85 to 88 in bf75508
subspace/crates/sp-domains-fraud-proof/src/lib.rs
Lines 49 to 64 in bf75508
subspace/domains/pallets/messenger/src/lib.rs
Lines 49 to 53 in bf75508
This potentially causes bugs if we match on the error code in production or test code. It also makes logs harder to read.
We should move all these codes next to each other, in the same file.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, subspace has
Custom
error codes in 3 different locations, which has led to clashes multiple times: (including200
here)subspace/domains/primitives/runtime/src/lib.rs
Lines 85 to 88 in bf75508
subspace/crates/sp-domains-fraud-proof/src/lib.rs
Lines 49 to 64 in bf75508
subspace/domains/pallets/messenger/src/lib.rs
Lines 49 to 53 in bf75508
This potentially causes bugs if we match on the error code in production or test code. It also makes logs harder to read.
We should move all these codes next to each other, in the same file.
The text was updated successfully, but these errors were encountered: