2016-05-06 11:23:48 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2015-2016 The Bitcoin Core developers
|
2015-11-09 08:40:46 +01:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Test a node with the -disablewallet option.
|
2015-11-09 08:40:46 +01:00
|
|
|
|
2019-01-07 10:55:35 +01:00
|
|
|
- Test that validateaddress RPC works when running with -disablewallet
|
|
|
|
- Test that it is not possible to mine to an invalid address.
|
|
|
|
"""
|
2015-11-09 08:40:46 +01:00
|
|
|
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
from test_framework.util import *
|
|
|
|
|
2015-12-02 18:12:23 +01:00
|
|
|
|
2015-11-09 08:40:46 +01:00
|
|
|
class DisableWalletTest (BitcoinTestFramework):
|
|
|
|
|
2016-05-20 15:16:51 +02:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2017-05-02 20:02:55 +02:00
|
|
|
self.extra_args = [["-disablewallet"]]
|
2015-11-09 08:40:46 +01:00
|
|
|
|
|
|
|
def run_test (self):
|
2017-05-09 23:15:15 +02:00
|
|
|
# Make sure wallet is really disabled
|
|
|
|
assert_raises_jsonrpc(-32601, 'Method not found', self.nodes[0].getwalletinfo)
|
2016-03-06 16:14:39 +01:00
|
|
|
x = self.nodes[0].validateaddress('7TSBtVu959hGEGPKyHjJz9k55RpWrPffXz')
|
2015-11-09 08:40:46 +01:00
|
|
|
assert(x['isvalid'] == False)
|
2016-05-10 14:00:07 +02:00
|
|
|
x = self.nodes[0].validateaddress('ycwedq2f3sz2Yf9JqZsBCQPxp18WU3Hp4J')
|
2015-11-09 08:40:46 +01:00
|
|
|
assert(x['isvalid'] == True)
|
|
|
|
|
2017-03-16 11:57:09 +01:00
|
|
|
# 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')
|
2016-03-23 13:24:34 +01:00
|
|
|
|
2015-11-09 08:40:46 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
DisableWalletTest ().main ()
|