-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fix-tss-key-voting-hash-collision
- Loading branch information
Showing
46 changed files
with
1,891 additions
and
1,471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
# V20 Breaking Changes | ||
|
||
### Emissions factors deprecated | ||
|
||
* `EmissionsFactors` have been deprecated and removed from the `emissions` module. | ||
- This results in the removal of the query `/zeta-chain/emissions/get_emissions_factors`. | ||
- The fixed block reward amount can now be queried via `/zeta-chain/emissions/params`. This is constant for every block and does not depend on any factors. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package sample | ||
|
||
import ( | ||
_ "embed" | ||
"testing" | ||
|
||
"github.com/cometbft/cometbft/types" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
//go:embed genesis.json | ||
var genesisJSON []byte | ||
|
||
func GenDoc(t *testing.T) *types.GenesisDoc { | ||
genDoc, err := types.GenesisDocFromJSON(genesisJSON) | ||
require.NoError(t, err) | ||
return genDoc | ||
} |
Oops, something went wrong.