2016-03-19 20:58:06 +01: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.
|
2017-01-18 00:34:40 +01:00
|
|
|
"""Test a node with the -disablewallet option.
|
2015-11-09 08:40:46 +01:00
|
|
|
|
2017-01-18 00:34:40 +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-14 13:01:31 +02:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 1
|
2017-04-03 15:34:04 +02:00
|
|
|
self.extra_args = [["-disablewallet"]]
|
2015-11-09 08:40:46 +01:00
|
|
|
|
|
|
|
def run_test (self):
|
|
|
|
x = self.nodes[0].validateaddress('3J98t1WpEZ73CNmQviecrnyiWrnqRhWNLy')
|
|
|
|
assert(x['isvalid'] == False)
|
|
|
|
x = self.nodes[0].validateaddress('mneYUmWYsuk7kySiURxCi3AGxrAqZxLgPZ')
|
|
|
|
assert(x['isvalid'] == True)
|
|
|
|
|
2017-03-07 20:08:59 +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, 'mneYUmWYsuk7kySiURxCi3AGxrAqZxLgPZ')
|
|
|
|
assert_raises_jsonrpc(-5, "Invalid address", self.nodes[0].generatetoaddress, 1, '3J98t1WpEZ73CNmQviecrnyiWrnqRhWNLy')
|
2016-03-14 22:54:34 +01:00
|
|
|
|
2015-11-09 08:40:46 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
DisableWalletTest ().main ()
|