Commit f01c9dbc authored by Attila Gazso's avatar Attila Gazso Committed by GitHub

Remove period from log output (#1017)

parent cd64b728
...@@ -48,9 +48,9 @@ func checkBalance( ...@@ -48,9 +48,9 @@ func checkBalance(
} }
if balance.Cmp(big.NewInt(int64(swapInitialDeposit))) < 0 { if balance.Cmp(big.NewInt(int64(swapInitialDeposit))) < 0 {
logger.Warningf("please make sure there is sufficient eth and bzz available on %x.", overlayEthAddress) logger.Warningf("please make sure there is sufficient eth and bzz available on %x", overlayEthAddress)
if chainId == 5 { if chainId == 5 {
logger.Warningf("on goerli you can get both goerli eth and goerli bzz from https://faucet.ethswarm.org?address=%x.", overlayEthAddress) logger.Warningf("on goerli you can get both goerli eth and goerli bzz from https://faucet.ethswarm.org?address=%x", overlayEthAddress)
} }
select { select {
case <-time.After(backoffDuration): case <-time.After(backoffDuration):
......
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