File tree 5 files changed +16
-3
lines changed
5 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,17 @@ Ref: https://keepachangelog.com/en/1.0.0/
27
27
-->
28
28
29
29
# Changelog
30
+ ## v3.7.0
31
+ sei-chain:
32
+ * [ #1283 ] ( https://github.com/sei-protocol/sei-chain/pull/1283 ) Update synchronous execution to set tx indices properly
33
+ * [ #1325 ] ( https://github.com/sei-protocol/sei-chain/pull/1325 ) Oracle price feeder ignore error for vote already exist
34
+
35
+ sei-cosmos:
36
+ * [ #401 ] ( https://github.com/sei-protocol/sei-cosmos/pull/401 ) Ensure Panic Recovery in Prepare & Process Handlers
37
+ * [ #404 ] ( https://github.com/sei-protocol/sei-cosmos/pull/404 ) No longer disable dynamic dep generation
38
+ * [ #411 ] ( https://github.com/sei-protocol/sei-cosmos/pull/411 ) Fix concurrent map access for seidb
39
+ * [ #424 ] ( https://github.com/sei-protocol/sei-cosmos/pull/424 ) Fix SS apply changeset version off by 1
40
+
30
41
## v3.6.1
31
42
sei-chain:
32
43
* [ #1204 ] ( https://github.com/sei-protocol/sei-chain/pull/1204 ) Cleanup removed oracle feeds
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ var upgradesList = []string{
67
67
"v3.3.0" ,
68
68
"v3.5.0" ,
69
69
"v3.6.1" ,
70
+ "v3.7.0" ,
70
71
}
71
72
72
73
// if there is an override list, use that instead, for integration tests
Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ require (
307
307
replace (
308
308
github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.0.4
309
309
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
310
- github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.2.73-hotfix-2
310
+ github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.2.74
311
311
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.9
312
312
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.3.0
313
313
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
Original file line number Diff line number Diff line change @@ -1170,8 +1170,8 @@ github.com/securego/gosec/v2 v2.11.0/go.mod h1:SX8bptShuG8reGC0XS09+a4H2BoWSJi+f
1170
1170
github.com/segmentio/fasthash v1.0.3 /go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY =
1171
1171
github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQpIbXDA =
1172
1172
github.com/sei-protocol/goutils v0.0.2 /go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8 =
1173
- github.com/sei-protocol/sei-cosmos v0.2.73-hotfix-2 h1:3AipLPlcAvQyrLCNGM53+EvstzOwhQ2iE4ARyKLsIIw =
1174
- github.com/sei-protocol/sei-cosmos v0.2.73-hotfix-2 /go.mod h1:CykNPmj90YkwBorkvnc05u9k9MBNDHC3h4CIdmq3R98 =
1173
+ github.com/sei-protocol/sei-cosmos v0.2.74 h1:UAXI4+aCO8nUJ1cAqRBZZbnIjjzfZLJCf94zOre0ZCA =
1174
+ github.com/sei-protocol/sei-cosmos v0.2.74 /go.mod h1:CykNPmj90YkwBorkvnc05u9k9MBNDHC3h4CIdmq3R98 =
1175
1175
github.com/sei-protocol/sei-db v0.0.30 h1:dlAOTE+7nByzzAD9cb1/DxaHWbxXOHFh58a2ImvcoYs =
1176
1176
github.com/sei-protocol/sei-db v0.0.30 /go.mod h1:F/ZKZA8HJPcUzSZPA8yt6pfwlGriJ4RDR4eHKSGLStI =
1177
1177
github.com/sei-protocol/sei-iavl v0.1.9 h1:y4mVYftxLNRs6533zl7N0/Ch+CzRQc04JDfHolIxgBE =
Original file line number Diff line number Diff line change 2
2
package types
3
3
4
4
// event types
5
+ // nolint
5
6
const (
6
7
AttributeAmount = "amount"
7
8
AttributeCreator = "creator"
You can’t perform that action at this time.
0 commit comments