From 6d5a16a4ab63312880d112464b71216105c3a7bf Mon Sep 17 00:00:00 2001 From: Alex Sharov Date: Mon, 17 Apr 2023 13:42:37 +0700 Subject: [PATCH] e3: fix exec tx nil (#7322) --- cmd/rpcdaemon/commands/eth_receipts.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/rpcdaemon/commands/eth_receipts.go b/cmd/rpcdaemon/commands/eth_receipts.go index 132fec5c7..bb9cd66ee 100644 --- a/cmd/rpcdaemon/commands/eth_receipts.go +++ b/cmd/rpcdaemon/commands/eth_receipts.go @@ -483,6 +483,7 @@ func txnExecutor(tx kv.TemporalTx, chainConfig *chain.Config, engine consensus.E stateReader.SetTx(tx) ie := &intraBlockExec{ + tx: tx, engine: engine, chainConfig: chainConfig, br: br,