diff options
| author | Amiti Uttarwar <[email protected]> | 2019-01-26 14:34:00 -0800 |
|---|---|---|
| committer | Amiti Uttarwar <[email protected]> | 2019-01-26 18:36:53 -0800 |
| commit | 04da9f4834e1651da65ceb6379950cef9450591c (patch) | |
| tree | c09a61a7b7223b0aff17834f5cf3094aa46b1e75 /test/functional/interface_rest.py | |
| parent | Merge #15154: configure: bitcoin-tx doesn't need libevent, so don't pull it in (diff) | |
| download | discoin-04da9f4834e1651da65ceb6379950cef9450591c.tar.xz discoin-04da9f4834e1651da65ceb6379950cef9450591c.zip | |
[RPC] Update getrawtransaction interface
Diffstat (limited to 'test/functional/interface_rest.py')
| -rwxr-xr-x | test/functional/interface_rest.py | 3 |
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() |