Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/pip/idna-3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe authored Apr 15, 2024
2 parents 5acb684 + 6e26d50 commit 3d9a769
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
- [#117](https://github.com/crypto-com/pystarport/pull/117) make event_query_tx_for optional.
- [#121](https://github.com/crypto-com/pystarport/pull/121) Support sdk 0.50
- [#122](https://github.com/crypto-com/pystarport/pull/122) Adjust status and staking related cli for sdk 0.50
- [#127](https://github.com/crypto-com/pystarport/pull/127) Support adding new key when patching config


*Feb 7, 2023*
Expand Down
2 changes: 1 addition & 1 deletion pystarport/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -1378,7 +1378,7 @@ def edit_tm_cfg(path, base_port, peers, config, *, custom_edit=None):
def patch_toml_doc(doc, patch):
for k, v in patch.items():
if isinstance(v, dict):
patch_toml_doc(doc[k], v)
patch_toml_doc(doc.setdefault(k, {}), v)
else:
doc[k] = v

Expand Down

0 comments on commit 3d9a769

Please sign in to comment.