We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c002e commit 8d26395Copy full SHA for 8d26395
silkworm/rpc/commands/ots_api.cpp
@@ -641,7 +641,7 @@ Task<void> OtsRpcApi::handle_ots_get_internal_operations(const nlohmann::json& r
641
const auto transaction_with_block = co_await core::read_transaction_by_hash(*block_cache_, *chain_storage, transaction_hash);
642
643
if (!transaction_with_block.has_value()) {
644
- const auto error_msg = "transaction 0x" + silkworm::to_hex(transaction_hash) + " not found";
+ const auto error_msg = "transaction 0x" + silkworm::to_hex(transaction_hash) + " not found";
645
reply = make_json_error(request, -32000, error_msg);
646
co_await tx->close();
647
co_return;
0 commit comments