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
|
2015-11-09 08:40:46 +01:00
|
|
|
|
|
|
|
def setup_network(self, split=False):
|
2016-05-20 15:16:51 +02:00
|
|
|
self.nodes = start_nodes(self.num_nodes, self.options.tmpdir, [['-disablewallet']])
|
2015-11-09 08:40:46 +01:00
|
|
|
self.is_network_split = False
|
|
|
|
self.sync_all()
|
|
|
|
|
|
|
|
def run_test (self):
|
|
|
|
# Check regression: https://github.com/bitcoin/bitcoin/issues/6963#issuecomment-154548880
|
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)
|
|
|
|
|
2016-03-23 13:24:34 +01:00
|
|
|
# Checking mining to an address without a wallet
|
|
|
|
try:
|
2017-12-20 06:57:47 +01:00
|
|
|
self.nodes[0].generatetoaddress(1, 'ycwedq2f3sz2Yf9JqZsBCQPxp18WU3Hp4J')
|
2017-12-21 20:33:47 +01:00
|
|
|
except JSONRPCException as e:
|
2016-03-23 13:24:34 +01:00
|
|
|
assert("Invalid address" not in e.error['message'])
|
|
|
|
assert("ProcessNewBlock, block not accepted" not in e.error['message'])
|
|
|
|
assert("Couldn't create new block" not in e.error['message'])
|
|
|
|
|
|
|
|
try:
|
2017-12-20 06:57:47 +01:00
|
|
|
self.nodes[0].generatetoaddress(1, '7TSBtVu959hGEGPKyHjJz9k55RpWrPffXz')
|
2016-03-23 13:24:34 +01:00
|
|
|
raise AssertionError("Must not mine to invalid address!")
|
2017-12-21 20:33:47 +01:00
|
|
|
except JSONRPCException as e:
|
2016-03-23 13:24:34 +01:00
|
|
|
assert("Invalid address" in e.error['message'])
|
|
|
|
|
2015-11-09 08:40:46 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
DisableWalletTest ().main ()
|