Skip to content

Commit c7f29d1

Browse files
committed
Fix transaction_pool.fetch_transaction (to include pool txs).
1 parent ef05305 commit c7f29d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interface/transaction_pool.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ void transaction_pool::fetch_transaction(server_node& node,
4444
}
4545

4646
// The response allows confirmed and unconfirmed transactions.
47-
node.chain().fetch_transaction(hash, true,
47+
node.chain().fetch_transaction(hash, false,
4848
std::bind(transaction_fetched,
4949
_1, _2, _3, _4, request, handler));
5050
}

0 commit comments

Comments
 (0)