-
Notifications
You must be signed in to change notification settings - Fork 716
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
merge two global fee refactor branch #2242
Conversation
With Make 4.3+, the empty whitespace does not seem to work as originally intended. This causes build tags to be "netgo ledger," on Ubuntu 22.04 and other systems that include the newer Make version. The build tags were intended as "netgo,ledger" which can be observed on Make 4.2 (shipped with Ubuntu 20.04). This change swaps out the `+=` use in favor of an explicit `:=`. Ref: https://www.gnu.org/software/make/manual/html_node/Appending.html Closes #2017. Co-authored-by: Marius Poke <marius.poke@posteo.de> Co-authored-by: Milan Mulji <98309852+mmulji-ic@users.noreply.github.com>
- Improve code readability
|
|
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## yaru/globalfee-refactor #2242 +/- ##
===========================================================
+ Coverage 84.77% 85.67% +0.90%
===========================================================
Files 21 21
Lines 1484 1459 -25
===========================================================
- Hits 1258 1250 -8
+ Misses 181 167 -14
+ Partials 45 42 -3
|
|
func (coins DecCoins) Validate() error { | ||
switch len(coins) { |
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.
this will be refactored later if globalfee does not allow zero coins
No description provided.