Skip to content

Commit

Permalink
stakepoold: increment semver
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeGruffins committed Aug 8, 2019
1 parent dd0e8b2 commit 1748d12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/stakepoold/rpc/rpcserver/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const (
// collection cycle to also trigger a timeout but the current allocation
// pattern of stakepoold is not known to cause such conditions at this time.
GRPCCommandTimeout = time.Millisecond * 100
semverString = "7.0.0"
semverMajor = 7
semverString = "8.0.0"
semverMajor = 8
semverMinor = 0
semverPatch = 0
)
Expand Down
2 changes: 1 addition & 1 deletion stakepooldclient/stakepooldclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

var (
requiredStakepooldAPI = semver{major: 7, minor: 0, patch: 0}
requiredStakepooldAPI = semver{major: 8, minor: 0, patch: 0}
// cacheTimerStakeInfo is the duration of time after which to
// access the wallet and update the stake information instead
// of returning cached stake information.
Expand Down

0 comments on commit 1748d12

Please sign in to comment.