Skip to content

Commit

Permalink
fix addr
Browse files Browse the repository at this point in the history
  • Loading branch information
dnkolegov committed Nov 15, 2023
1 parent c9781cd commit babe099
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions faucet/internal/faucet/faucet.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,16 +170,16 @@ func (s *Service) transferETH(ctx context.Context, to common.Address) error {
if err != nil {
s.log.Errorw(
"failed to send tx", "hash", signedTx.Hash(),
"GasFeeCap", gasFeeCap,
"gas", gasLimit,
"gasFeeCap", gasFeeCap,
"gasLimit", gasLimit,
"gasTipCap", gasTipCap,
"baseFee", baseFee,
)
return fmt.Errorf("failed to send tx: %w", err)
}

s.log.Infof("tx sent: %s", signedTx.Hash().Hex())
s.log.Infof("faucetAddress %v funded successfully", to)
s.log.Infof("address %v funded successfully", to)

return nil
}
Expand Down

0 comments on commit babe099

Please sign in to comment.