Commit 1bf70a81 authored by Ralph Pichler's avatar Ralph Pichler Committed by GitHub

add nonce log line (#1467)

parent b9d391dd
...@@ -98,6 +98,8 @@ func (t *transactionService) Send(ctx context.Context, request *TxRequest) (txHa ...@@ -98,6 +98,8 @@ func (t *transactionService) Send(ctx context.Context, request *TxRequest) (txHa
return common.Hash{}, err return common.Hash{}, err
} }
t.logger.Tracef("sending transaction %x with nonce %d", signedTx.Hash(), nonce)
err = t.backend.SendTransaction(ctx, signedTx) err = t.backend.SendTransaction(ctx, signedTx)
if err != nil { if err != nil {
return common.Hash{}, err return common.Hash{}, err
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment