We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5bedda commit 65e8f15Copy full SHA for 65e8f15
bitcoin/rpc.py
@@ -799,6 +799,16 @@ def createwallet(self, name):
799
r = self._call('createwallet', name)
800
return r
801
802
+ def loadwallet(self, name, load_on_startup=False):
803
+ """load a wallet.
804
+
805
+ name - The wallet name.
806
+ load_on_startup - whether to remember to load it automatically next time bitcoind starts.
807
808
+ """
809
+ r = self._call('loadwallet', name, load_on_startup)
810
+ return r
811
812
def _addnode(self, node, arg):
813
r = self._call('addnode', node, arg)
814
0 commit comments