mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Add from in log
This commit is contained in:
parent
7f4562a425
commit
86d57413ac
1 changed files with 1 additions and 1 deletions
|
|
@ -608,9 +608,9 @@ func (api *API) traceBlock(ctx context.Context, block *types.Block, config *Trac
|
|||
fmt.Printf("DEBUG - traceBlock - block %+v\n", block)
|
||||
fmt.Printf("DEBUG - traceBlock - txs %+v\n", txs)
|
||||
for i, tx := range txs {
|
||||
fmt.Printf("DEBUG - traceBlock inner - tx %+v\n", tx.Hash())
|
||||
// Generate the next state snapshot fast without tracing
|
||||
msg, _ := core.TransactionToMessage(tx, signer, block.BaseFee())
|
||||
fmt.Printf("DEBUG - traceBlock inner - From %+v tx %+v\n", msg.From, tx.Hash())
|
||||
txctx := &Context{
|
||||
BlockHash: blockHash,
|
||||
BlockNumber: block.Number(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue