Skip to content

Commit 1a5be2f

Browse files
authored
Merge pull request #685 from KiraCore/release/v0.4.1
release/v0.4.1 -> master
2 parents a9aae65 + aa0ca49 commit 1a5be2f

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

RELEASE.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
Features:
22

3-
- Tokens module refactoring (#664)
4-
- Layer2 improvement (#668)
5-
- Fix storeKeys for layer2 and recovery modules
3+
- Fix legacy tx signing

app/ante/sigverify.go

+3
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,13 @@ func (svd SigVerificationDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simul
218218
if !genesis {
219219
accNum = acc.GetAccountNumber()
220220
}
221+
221222
signerData := authsigning.SignerData{
223+
Address: acc.GetAddress().String(),
222224
ChainID: chainID,
223225
AccountNumber: accNum,
224226
Sequence: acc.GetSequence(),
227+
PubKey: pubKey,
225228
}
226229

227230
if !simulate {

types/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ package types
33
const (
44
// we set page iteration limit for safety
55
PageIterationLimit = 512
6-
SekaiVersion = "v0.4.0"
6+
SekaiVersion = "v0.4.1"
77
CosmosVersion = "v0.47.6"
88
)

x/gov/types/codec.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) {
3535
"description": "maximum transaction fee"
3636
},
3737
"vote_quorum": {
38-
"type": "uint64",
38+
"type": "decimal",
3939
"description": "vote quorum"
4040
},
4141
"proposal_end_time": {

0 commit comments

Comments
 (0)