rename binary output
handle funds better
This commit is contained in:
parent
ce35994a41
commit
c73988416c
2 changed files with 5 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
BINARY=prism-bin
|
||||
BINARY=ytsync
|
||||
|
||||
DIR = $(shell cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)
|
||||
BIN_DIR = ${DIR}/bin
|
||||
|
|
|
@ -620,8 +620,10 @@ func (s *Sync) startWorker(workerNum int) {
|
|||
SendErrorToSlack("something went wrong while waiting for a block: %v", err)
|
||||
break
|
||||
}
|
||||
} else if strings.Contains(err.Error(), "failed: Not enough funds") ||
|
||||
strings.Contains(err.Error(), "Error in daemon: Insufficient funds, please deposit additional LBC") {
|
||||
} else if util.SubstringInSlice(err.Error(), []string{
|
||||
"Not enough funds to cover this transaction",
|
||||
"failed: Not enough funds",
|
||||
"Error in daemon: Insufficient funds, please deposit additional LBC"}) {
|
||||
log.Println("refilling addresses before retrying")
|
||||
err = s.walletSetup()
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue