mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
1c7ec5f4ad
fa7396d
qa: disablewallet: Check that wallet is really disabled (MarcoFalke)
Tree-SHA512: 8c999ae0763fad389ba06f23cca3f589edaaf6dabd29ea8493413eee574ef2c1d49a69cb1158d8b28254cf922277a86b45747e50f44ebc9b0545297c3987289d
38 lines
1.5 KiB
Python
Executable File
38 lines
1.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2015-2016 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
"""Test a node with the -disablewallet option.
|
|
|
|
- Test that validateaddress RPC works when running with -disablewallet
|
|
- Test that it is not possible to mine to an invalid address.
|
|
"""
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.util import *
|
|
|
|
|
|
class DisableWalletTest (BitcoinTestFramework):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.setup_clean_chain = True
|
|
self.num_nodes = 1
|
|
self.extra_args = [["-disablewallet"]]
|
|
|
|
def run_test (self):
|
|
# Make sure wallet is really disabled
|
|
assert_raises_jsonrpc(-32601, 'Method not found', self.nodes[0].getwalletinfo)
|
|
x = self.nodes[0].validateaddress('7TSBtVu959hGEGPKyHjJz9k55RpWrPffXz')
|
|
assert(x['isvalid'] == False)
|
|
x = self.nodes[0].validateaddress('ycwedq2f3sz2Yf9JqZsBCQPxp18WU3Hp4J')
|
|
assert(x['isvalid'] == True)
|
|
|
|
# Checking mining to an address without a wallet. Generating to a valid address should succeed
|
|
# but generating to an invalid address will fail.
|
|
self.nodes[0].generatetoaddress(1, 'ycwedq2f3sz2Yf9JqZsBCQPxp18WU3Hp4J')
|
|
assert_raises_jsonrpc(-5, "Invalid address", self.nodes[0].generatetoaddress, 1, '7TSBtVu959hGEGPKyHjJz9k55RpWrPffXz')
|
|
|
|
if __name__ == '__main__':
|
|
DisableWalletTest ().main ()
|