6 commits in all time Mar 19, 2026 12:14 – Jun 17, 2026 12:14 UTC
Merge f9bcc4d6f2eb5933886ea835e14529d8f2f01e00 into 3442519234c85345cde5f05b60f52e14d74fa7f3
Git Commit 0a4ec05b Branch pull/592/merge Document 1/4 ++ 1 --
fix: Wallet.delete_key() returns False for non-existent addresses
Previously, Wallet.delete_key() always returned True regardless of
whether the address existed in the wallet. This was because the KMD
API's delete endpoint returns an empty response ({}) for both successful
deletions and 'key not found' cases.

Fix: Check if the address exists in the wallet via list_keys() before
attempting deletion. Return False immediately if the address is not
found, and only call kcl.delete_key() for addresses that actually
exist.

Fixes #472
Git Commit f9bcc4d6 Branch pull/592/head Document 1/4 ++ 1 --
Merge f4d6dfed3255670bf3af6f2be1584bcf1de573fc into 3442519234c85345cde5f05b60f52e14d74fa7f3
Git Commit 28ce88b3 Branch pull/591/merge Document 1/5 ++ 1 --
fix: Wallet.delete_key() returns False for non-existent accounts
Previously, delete_key() always returned True because it passed through
the KMD API response (empty dict == True) regardless of whether the key
actually existed in the wallet.

Now checks list_keys() first and returns False if the address is not
found, matching the documented behavior.

Closes #472
Git Commit f4d6dfed Branch pull/591/head Document 1/5 ++ 1 --
Merge 3a8d8627bffb9322d688c05c9491196c9ae94feb into 3442519234c85345cde5f05b60f52e14d74fa7f3
Git Commit f0b370d9 Branch pull/590/merge Document 1/1 ++ 1 --
Bump pytest from 6.2.5 to 9.0.3
Bumps [pytest](https://github.com/pytest-dev/pytest) from 6.2.5 to 9.0.3.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/6.2.5...9.0.3)

---
updated-dependencies:
- dependency-name: pytest
  dependency-version: 9.0.3
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Git Commit 3a8d8627 Branch dependabot/pip/pytest-9.0.3 Document 1/1 ++ 1 --