Skip to content

Commit fce4123

Browse files
author
MarcoFalke
committed
Merge #16217: getrawtransaction: inform about blockhash argument when lookup fails
c59e3a3 getrawtransaction: inform about blockhash argument when lookup fails (darosior) Pull request description: Just 4 words added on `getrawtransaction` lookup error to fix #16142 ACKs for commit c59e3a: Tree-SHA512: 2219099c1240667527a9b1498a58818b5ff1c2ef366c498d2bb57963e828b3c87fa3e6b94be7e6463bd289ceabc13f9c9b1082134641594ba335ac400e6d63aa
2 parents 1a274bc + c59e3a3 commit fce4123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rpc/rawtransaction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ static UniValue getrawtransaction(const JSONRPCRequest& request)
196196
}
197197
errmsg = "No such transaction found in the provided block";
198198
} else if (!g_txindex) {
199-
errmsg = "No such mempool transaction. Use -txindex to enable blockchain transaction queries";
199+
errmsg = "No such mempool transaction. Use -txindex or provide a block hash to enable blockchain transaction queries";
200200
} else if (!f_txindex_ready) {
201201
errmsg = "No such mempool transaction. Blockchain transactions are still in the process of being indexed";
202202
} else {

0 commit comments

Comments
 (0)