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 14, 2019
1 parent d7aaf03 commit 82f875d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 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
3 changes: 1 addition & 2 deletions stakepooldclient/stakepooldclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,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 82f875d

Please sign in to comment.