Closed xoloki closed 9 months ago
Latest commit: |
c844a4a
|
Status: | ✅ Deploy successful! |
Preview URL: | https://2c140075.p256k1.pages.dev |
Branch Preview URL: | https://flatten-b58-errors.p256k1.pages.dev |
Attention: 12 lines
in your changes are missing coverage. Please review.
Comparison is base (
32ba1c9
) 61.53% compared to head (c844a4a
) 61.40%.
Files | Patch % | Lines |
---|---|---|
p256k1/src/keys.rs | 0.00% | 4 Missing :warning: |
p256k1/src/errors.rs | 0.00% | 2 Missing :warning: |
p256k1/src/field.rs | 0.00% | 2 Missing :warning: |
p256k1/src/point.rs | 33.33% | 2 Missing :warning: |
p256k1/src/scalar.rs | 0.00% | 2 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
When doing
bs58
conversions, there are a variety of possible errors which can be returned. Unfortunately, these errors do notimpl
Serialize
orDeserialize
, so we can't trivially wrap them. And we frankly don't care; it's enough to know that an error was caused bybs58
serialization.So to allow serializing errors, do not wrap the
bs58
error types in theerrors::Base58Error
variants.