aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_watchonly.py
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2021-02-16 20:41:21 +0100
committerAndrew Chow <achow101-github@achow101.com>2021-02-16 15:49:28 -0500
commit6bfbc97d716faad38c87603ac6049d222236d623 (patch)
treea0c88370c59a9c028b451153df352fd30853a3a3 /test/functional/wallet_watchonly.py
parent0997019e7681efb00847a7246c15ac8f235128d8 (diff)
downloadbitcoin-6bfbc97d716faad38c87603ac6049d222236d623.tar.xz
test: disallow sendtoaddress/sendmany when private keys disabled
Diffstat (limited to 'test/functional/wallet_watchonly.py')
-rwxr-xr-xtest/functional/wallet_watchonly.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/functional/wallet_watchonly.py b/test/functional/wallet_watchonly.py
index 24799fe5f2..c345c382d0 100755
--- a/test/functional/wallet_watchonly.py
+++ b/test/functional/wallet_watchonly.py
@@ -2,7 +2,7 @@
# Copyright (c) 2018-2019 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 createwallet arguments.
+"""Test createwallet watchonly arguments.
"""
from test_framework.test_framework import BitcoinTestFramework
@@ -49,6 +49,11 @@ class CreateWalletWatchonlyTest(BitcoinTestFramework):
assert_equal(len(wo_wallet.listtransactions()), 1)
assert_equal(wo_wallet.getbalance(include_watchonly=False), 0)
+ self.log.info('Test sending from a watch-only wallet raises RPC error')
+ msg = "Error: Private keys are disabled for this wallet"
+ assert_raises_rpc_error(-4, msg, wo_wallet.sendtoaddress, a1, 0.1)
+ assert_raises_rpc_error(-4, msg, wo_wallet.sendmany, amounts={a1: 0.1})
+
self.log.info('Testing listreceivedbyaddress watch-only defaults')
result = wo_wallet.listreceivedbyaddress()
assert_equal(len(result), 1)