Skip to content

Commit

Permalink
Fix staking constants
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 committed Oct 9, 2020
1 parent eb0a7ab commit 5d608ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/staking.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ type BondStatus int32

// staking constants
const (
Unbonded BondStatus = 1
Unbonding BondStatus = 2
Bonded BondStatus = 3
Unbonded BondStatus = 0
Unbonding BondStatus = 1
Bonded BondStatus = 2

BondStatusUnbonded = "Unbonded"
BondStatusUnbonding = "Unbonding"
Expand Down

0 comments on commit 5d608ac

Please sign in to comment.