aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_fallbackfee.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2018-06-18 12:17:22 -0400
committerJohn Newbery <john@johnnewbery.com>2018-06-18 12:33:15 -0400
commite209184101e3de9138452fb973e2f379f9eacdc8 (patch)
tree19be5605c438d4b516b9a30952dd59d029cd7a32 /test/functional/wallet_fallbackfee.py
parent450055bdbdcbf4c1ce16cdca00fc4499a6994bc7 (diff)
downloadbitcoin-e209184101e3de9138452fb973e2f379f9eacdc8.tar.xz
[wallet] deprecate sendfrom RPC method.
Diffstat (limited to 'test/functional/wallet_fallbackfee.py')
-rwxr-xr-xtest/functional/wallet_fallbackfee.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/wallet_fallbackfee.py b/test/functional/wallet_fallbackfee.py
index e9cd052344..cc0a5175d5 100755
--- a/test/functional/wallet_fallbackfee.py
+++ b/test/functional/wallet_fallbackfee.py
@@ -21,7 +21,6 @@ class WalletRBFTest(BitcoinTestFramework):
self.restart_node(0, extra_args=["-fallbackfee=0"])
assert_raises_rpc_error(-4, "Fee estimation failed", lambda: self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), 1))
assert_raises_rpc_error(-4, "Fee estimation failed", lambda: self.nodes[0].fundrawtransaction(self.nodes[0].createrawtransaction([], {self.nodes[0].getnewaddress(): 1})))
- assert_raises_rpc_error(-4, "Fee estimation failed", lambda: self.nodes[0].sendfrom("", self.nodes[0].getnewaddress(), 1))
assert_raises_rpc_error(-6, "Fee estimation failed", lambda: self.nodes[0].sendmany("", {self.nodes[0].getnewaddress(): 1}))
if __name__ == '__main__':