Skip to content

Commit

Permalink
Merge pull request #242 from MinterTeam/fix
Browse files Browse the repository at this point in the history
v0.19.3
  • Loading branch information
danil-lashin authored Apr 20, 2019
2 parents d50fcf3 + a9927e3 commit 3fdad93
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.19.3

BUG FIXES

- [core] Fix set candidate remainder issue

## 0.19.2

BUG FIXES
Expand Down
4 changes: 3 additions & 1 deletion core/state/statedb.go
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,9 @@ func (s *StateDB) PayRewards() {
})
}

validator.AccumReward.Set(remainder)
if s.height < 41556 {
validator.AccumReward.Set(remainder)
}
}
}

Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ package version
const (
Maj = "0"
Min = "19"
Fix = "2"
Fix = "3"

AppVer = 4
)

var (
// Must be a string because scripts like dist.sh read this file.
Version = "0.19.2"
Version = "0.19.3"

// GitCommit is the current HEAD set using ldflags.
GitCommit string
Expand Down

0 comments on commit 3fdad93

Please sign in to comment.