From 53874f7934d50f68ea46df68b2bcd11bad834730 Mon Sep 17 00:00:00 2001 From: Sebastian Falbesoner Date: Mon, 6 Oct 2025 01:57:40 +0200 Subject: [PATCH] doc: test: update TestShell example instructions/options The `createwallet` RPC doesn't return the empty passphrase warning anymore if no passphrase was passed explicitly. The `noshutdown` parameter key was removed in commit fa0dc09b9002f0bcae63af6af8d37fb3e0040ef4, so remove it from the table. --- test/functional/test-shell.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/functional/test-shell.md b/test/functional/test-shell.md index 0a05658e2f8..526c67f6905 100644 --- a/test/functional/test-shell.md +++ b/test/functional/test-shell.md @@ -97,7 +97,7 @@ rewards to a wallet address owned by the mining node. ``` >>> test.nodes[0].createwallet('default') -{'name': 'default', 'warning': 'Empty string given as passphrase, wallet will not be encrypted.'} +{'name': 'default'} >>> address = test.nodes[0].getnewaddress() >>> test.generatetoaddress(test.nodes[0], 101, address) ['2b98dd0044aae6f1cca7f88a0acf366a4bfe053c7f7b00da3c0d115f03d67efb', ... @@ -179,7 +179,6 @@ can be called after the TestShell is shut down. | `coveragedir` | `None` | Records bitcoind RPC test coverage into this directory if set. | | `loglevel` | `INFO` | Logs events at this level and higher. Can be set to `DEBUG`, `INFO`, `WARNING`, `ERROR` or `CRITICAL`. | | `nocleanup` | `False` | Cleans up temporary test directory if set to `True` during `shutdown`. | -| `noshutdown` | `False` | Does not stop bitcoind instances after `shutdown` if set to `True`. | | `num_nodes` | `1` | Sets the number of initialized bitcoind processes. | | `perf` | False | Profiles running nodes with `perf` for the duration of the test if set to `True`. | | `rpc_timeout` | `60` | Sets the RPC server timeout for the underlying bitcoind processes. |