Skip to content

Commit

Permalink
Merge pull request #685 from KiraCore/release/v0.4.1
Browse files Browse the repository at this point in the history
release/v0.4.1 -> master
  • Loading branch information
kmlbgn authored Jul 27, 2024
2 parents a9aae65 + aa0ca49 commit 1a5be2f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
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

0 comments on commit 1a5be2f

Please sign in to comment.