Skip to content

Commit afb5f83

Browse files
authored
V6.0.4 upgrade (#2093)
1 parent 6a66ee6 commit afb5f83

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,35 @@ Ref: https://keepachangelog.com/en/1.0.0/
2727
-->
2828

2929
# Changelog
30+
## v6.0.4
31+
sei-chain
32+
* [#2091](https://github.com/sei-protocol/sei-chain/pull/2091) Fix RPC subscription fields
33+
* [#2089](https://github.com/sei-protocol/sei-chain/pull/2089) Tracer RPC fixes
34+
* [#2087](https://github.com/sei-protocol/sei-chain/pull/2087) Make coinbase distribution in EndBlock more efficient
35+
* [#2085](https://github.com/sei-protocol/sei-chain/pull/2085) Allow safe/latest/final to be passed as block number to trace/simulate endpoints
36+
* [#2075](https://github.com/sei-protocol/sei-chain/pull/2075) Improve pointer/pointee query UX
37+
* [#2073](https://github.com/sei-protocol/sei-chain/pull/2073) RPC simulation with gas used estimate tagging
38+
* [#2071](https://github.com/sei-protocol/sei-chain/pull/2071) Improve tracer/simulation RPC
39+
* [#2068](https://github.com/sei-protocol/sei-chain/pull/2068) Fix eth_gasPrice not found
40+
* [#2067](https://github.com/sei-protocol/sei-chain/pull/2067) Set log index across all transactions in a block
41+
* [#2065](https://github.com/sei-protocol/sei-chain/pull/2064) Add sei2_getBlock endpoints to include bank transfers
42+
* [#2059](https://github.com/sei-protocol/sei-chain/pull/2059) Add tools to scan and compute hash for IAVL db
43+
* [#2058](https://github.com/sei-protocol/sei-chain/pull/2058) Exclude Synthetic txs from *ExcludePanicTx endpoints
44+
* [#2054](https://github.com/sei-protocol/sei-chain/pull/2054) Add extractAsBytesFromArray method for JSON precompile
45+
* [#2050](https://github.com/sei-protocol/sei-chain/pull/2050) Extract multiple EVM logs from a single WASM event
46+
* [#2048](https://github.com/sei-protocol/sei-chain/pull/2048) Add logic to remove a small number of tx hashes each block
47+
48+
sei-cosmos
49+
* [#568](https://github.com/sei-protocol/sei-cosmos/pull/568) Blacklist evm coinbase address from receiving
50+
* [#565](https://github.com/sei-protocol/sei-cosmos/pull/565) Bypass unnecessary logics in BeginBlock for simulate
51+
* [#564](https://github.com/sei-protocol/sei-cosmos/pull/564) Add whitelist for fee denoms
52+
53+
sei-tendermint
54+
* [#265](https://github.com/sei-protocol/sei-tendermint/pull/264) Fix: peer manager nil pointer
55+
* [#263](https://github.com/sei-protocol/sei-tendermint/pull/263) Update ReapMaxBytesMaxGas to include estimated gas
56+
* [#259](https://github.com/sei-protocol/sei-tendermint/pull/259) Add simulate flag to RequestBeginBlock
57+
* [#258](https://github.com/sei-protocol/sei-tendermint/pull/258) Add utils to get RequestBeginBlock
58+
3059
## v6.0.3
3160
sei-chain
3261
* [#2057](https://github.com/sei-protocol/sei-chain/pull/2057) Avoid panic tx error message in debug trace

app/upgrades.go

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ var upgradesList = []string{
115115
"v6.0.1",
116116
"v6.0.2",
117117
"v6.0.3",
118+
"v6.0.4",
118119
}
119120

120121
// if there is an override list, use that instead, for integration tests

0 commit comments

Comments
 (0)