Merge branch 'main' into AlexanderFSP/main

This commit is contained in:
Simon Warta 2024-06-26 10:25:25 +02:00
commit 81b14b5cb7
No known key found for this signature in database
3 changed files with 9 additions and 4 deletions

View File

@ -6,11 +6,16 @@ and this project adheres to
## [Unreleased]
### Fixed
- @cosmjs/tendermint-rpc: fix node info check to accept empty string on channels
field ([#1591])
### Changed
- @cosmjs/stargate, @cosmjs/cosmwasm-stargate: Synchronize the default gas
multiplier value between the `signAndBroadcast` and `signAndBroadcastSync`
methods so that it is equal to 1.4 everywhere. ([#1584])
multiplier value between the `signAndBroadcast` and `signAndBroadcastSync`
methods so that it is equal to 1.4 everywhere. ([#1584])
## [0.32.3] - 2024-03-08

View File

@ -599,7 +599,7 @@ function decodeNodeInfo(data: RpcNodeInfo): responses.NodeInfo {
listenAddr: assertNotEmpty(data.listen_addr),
network: assertNotEmpty(data.network),
version: assertString(data.version), // Can be empty (https://github.com/cosmos/cosmos-sdk/issues/7963)
channels: assertNotEmpty(data.channels),
channels: assertString(data.channels), // can be empty
moniker: assertNotEmpty(data.moniker),
other: dictionaryToStringMap(data.other),
protocolVersion: {

View File

@ -597,7 +597,7 @@ function decodeNodeInfo(data: RpcNodeInfo): responses.NodeInfo {
listenAddr: assertNotEmpty(data.listen_addr),
network: assertNotEmpty(data.network),
version: assertString(data.version), // Can be empty (https://github.com/cosmos/cosmos-sdk/issues/7963)
channels: assertNotEmpty(data.channels),
channels: assertString(data.channels), // can be empty
moniker: assertNotEmpty(data.moniker),
other: dictionaryToStringMap(data.other),
protocolVersion: {