Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
blockscout/lib/explorer_web/controllers/pending_transaction_control...

17 lines
519 B

defmodule ExplorerWeb.PendingTransactionController do
use ExplorerWeb, :controller
import Ecto.Query
alias Explorer.Repo.NewRelic, as: Repo
alias Explorer.Transaction
def index(conn, params) do
query = from transaction in Transaction,
left_join: block_transaction in assoc(transaction, :block_transaction),
order_by: [desc: transaction.inserted_at],
where: is_nil(block_transaction.transaction_id)
render(conn, "index.html", transactions: Repo.paginate(query, params))
end
end