qa: disablewallet: Check that wallet is really disabled
This commit is contained in:
parent
23d78c4dd0
commit
fa7396d6d9
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,8 @@ class DisableWalletTest (BitcoinTestFramework):
|
|||
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('3J98t1WpEZ73CNmQviecrnyiWrnqRhWNLy')
|
||||
assert(x['isvalid'] == False)
|
||||
x = self.nodes[0].validateaddress('mneYUmWYsuk7kySiURxCi3AGxrAqZxLgPZ')
|
||||
|
|
Loading…
Reference in a new issue