Closed DRK3 closed 1 year ago
Merging #3618 (a1a50c4) into main (71e132b) will decrease coverage by
0.01%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## main #3618 +/- ##
==========================================
- Coverage 86.94% 86.94% -0.01%
==========================================
Files 367 367
Lines 50011 50020 +9
==========================================
+ Hits 43484 43490 +6
- Misses 4943 4945 +2
- Partials 1584 1585 +1
Files Changed | Coverage Δ | |
---|---|---|
.../models/dataintegrity/suite/ecdsa2019/ecdsa2019.go | 93.67% <100.00%> (+0.34%) |
:arrow_up: |
The existing API required an interface that defines many more methods than what are actually required, which forces consumers of the API to implement many methods that won't ever be called. The API has now been changed to make use of two minimal interfaces instead, making it easier to use and understand. Note that implementations of the larger crypto interface can still be used since the minimal interface method signatures match.
To avoid potential confusion with the new interface names, two existing constructors were renamed.