Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release/v0.4.1 -> master #685

Merged
merged 3 commits into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
Features:

- Tokens module refactoring (#664)
- Layer2 improvement (#668)
- Fix storeKeys for layer2 and recovery modules
- Fix legacy tx signing
3 changes: 3 additions & 0 deletions app/ante/sigverify.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,13 @@ func (svd SigVerificationDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simul
if !genesis {
accNum = acc.GetAccountNumber()
}

signerData := authsigning.SignerData{
Address: acc.GetAddress().String(),
ChainID: chainID,
AccountNumber: accNum,
Sequence: acc.GetSequence(),
PubKey: pubKey,
}

if !simulate {
Expand Down
2 changes: 1 addition & 1 deletion types/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package types
const (
// we set page iteration limit for safety
PageIterationLimit = 512
SekaiVersion = "v0.4.0"
SekaiVersion = "v0.4.1"
CosmosVersion = "v0.47.6"
)
2 changes: 1 addition & 1 deletion x/gov/types/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) {
"description": "maximum transaction fee"
},
"vote_quorum": {
"type": "uint64",
"type": "decimal",
"description": "vote quorum"
},
"proposal_end_time": {
Expand Down
Loading