Skip to content

Commit

Permalink
fix(dogfood): make the tests pass again
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMustermann2 committed Apr 2, 2024
1 parent 46460b5 commit a26eac8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/dogfood/types/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (suite *GenesisTestSuite) TestValidateGenesis() {
Params: params,
InitialValSet: []types.GenesisValidator{
{
PublicKey: sharedKey,
PublicKey: sharedKey[2:],
Power: 5,
},
},
Expand All @@ -62,7 +62,7 @@ func (suite *GenesisTestSuite) TestValidateGenesis() {
Params: params,
InitialValSet: []types.GenesisValidator{
{
PublicKey: sharedKey,
PublicKey: sharedKey + "ab",
Power: 5,
},
},
Expand Down

0 comments on commit a26eac8

Please sign in to comment.