Skip to content

Commit

Permalink
chore: fix linter (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
calbera authored Oct 7, 2024
1 parent 14e608b commit 373b9c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/transactor/transactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ func (t *TxrV2) SendTxRequest(txReq *types.Request) (string, error) {
// ForceTxRequest immediately (whenever the sender is free from any previous sends) builds and
// sends the tx request to the chain, after validating it.
// NOTE: this bypasses the queue and batching even if configured to do so.
func (t *TxrV2) ForceTxRequest(ctx context.Context, txReq *types.Request, async bool) (string, error) {
func (t *TxrV2) ForceTxRequest(
ctx context.Context, txReq *types.Request, async bool,
) (string, error) {
if err := txReq.Validate(); err != nil {
return "", err
}
Expand Down

0 comments on commit 373b9c3

Please sign in to comment.