aboutsummaryrefslogtreecommitdiff
path: root/test/functional/interface_rest.py
diff options
context:
space:
mode:
authorAmiti Uttarwar <[email protected]>2019-01-26 14:34:00 -0800
committerAmiti Uttarwar <[email protected]>2019-01-26 18:36:53 -0800
commit04da9f4834e1651da65ceb6379950cef9450591c (patch)
treec09a61a7b7223b0aff17834f5cf3094aa46b1e75 /test/functional/interface_rest.py
parentMerge #15154: configure: bitcoin-tx doesn't need libevent, so don't pull it in (diff)
downloaddiscoin-04da9f4834e1651da65ceb6379950cef9450591c.tar.xz
discoin-04da9f4834e1651da65ceb6379950cef9450591c.zip
[RPC] Update getrawtransaction interface
Diffstat (limited to 'test/functional/interface_rest.py')
-rwxr-xr-xtest/functional/interface_rest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/interface_rest.py b/test/functional/interface_rest.py
index afa9de580..72455a078 100755
--- a/test/functional/interface_rest.py
+++ b/test/functional/interface_rest.py
@@ -41,7 +41,8 @@ class RESTTest (BitcoinTestFramework):
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 2
- self.extra_args = [["-rest"], []]
+ # TODO: remove -txindex. Currently required for getrawtransaction call.
+ self.extra_args = [["-rest", "-txindex"], []]
def skip_test_if_missing_module(self):
self.skip_if_no_wallet()