We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c88529a commit fa67505Copy full SHA for fa67505
test/functional/test_framework/test_node.py
@@ -15,6 +15,7 @@
15
import subprocess
16
import tempfile
17
import time
18
+import urllib.parse
19
20
from .authproxy import JSONRPCException
21
from .util import (
@@ -184,7 +185,7 @@ def get_wallet_rpc(self, wallet_name):
184
185
return self.cli("-rpcwallet={}".format(wallet_name))
186
else:
187
assert self.rpc_connected and self.rpc, self._node_msg("RPC not connected")
- wallet_path = "wallet/%s" % wallet_name
188
+ wallet_path = "wallet/{}".format(urllib.parse.quote(wallet_name))
189
return self.rpc / wallet_path
190
191
def stop_node(self, expected_stderr=''):
0 commit comments