Skip to content

Commit

Permalink
List transactions in correct order in the log line
Browse files Browse the repository at this point in the history
  • Loading branch information
anodar committed Oct 16, 2023
1 parent 3816204 commit c551ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbnode/dataposter/data_poster.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func externalSigner(ctx context.Context, opts *ExternalSignerCfg) (signerFn, com
hasher = types.LatestSignerForChainID(tx.ChainId())
}
if hasher.Hash(tx) != hasher.Hash(&signedTx) {
return nil, fmt.Errorf("transaction: %x from external signer differs from request: %x", hasher.Hash(tx), hasher.Hash(&signedTx))
return nil, fmt.Errorf("transaction: %x from external signer differs from request: %x", hasher.Hash(&signedTx), hasher.Hash(tx))
}
return &signedTx, nil
}, sender, nil
Expand Down

0 comments on commit c551ff5

Please sign in to comment.