Commit d61c1646 authored by Attila Lendvai's avatar Attila Lendvai Committed by GitHub

logging: more explicit wording that bee requires ETH and BZZ to start (#1150)

parent 1a8858ee
...@@ -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("cannot continue until 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 the test network 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