diff options
author | Amiti Uttarwar <amiti@uttarwar.org> | 2019-01-26 14:34:00 -0800 |
---|---|---|
committer | Amiti Uttarwar <amiti@uttarwar.org> | 2019-01-26 18:36:53 -0800 |
commit | 04da9f4834e1651da65ceb6379950cef9450591c (patch) | |
tree | c09a61a7b7223b0aff17834f5cf3094aa46b1e75 /src/rest.cpp | |
parent | a9b71a09a0bbbdebc4c0b10d287bf2d53f628cf4 (diff) |
[RPC] Update getrawtransaction interface
Diffstat (limited to 'src/rest.cpp')
-rw-r--r-- | src/rest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rest.cpp b/src/rest.cpp index 4f26e3afb5..44f04ee2bc 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -352,7 +352,7 @@ static bool rest_tx(HTTPRequest* req, const std::string& strURIPart) CTransactionRef tx; uint256 hashBlock = uint256(); - if (!GetTransaction(hash, tx, Params().GetConsensus(), hashBlock, true)) + if (!GetTransaction(hash, tx, Params().GetConsensus(), hashBlock)) return RESTERR(req, HTTP_NOT_FOUND, hashStr + " not found"); switch (rf) { |