mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
Merge branch 'main' into AlexanderFSP/main
This commit is contained in:
commit
81b14b5cb7
@ -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
|
||||
|
||||
|
@ -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: {
|
||||
|
@ -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: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user