Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
chore: update logs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Sep 24, 2023
1 parent 86270d8 commit fff96f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion prover/server/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ func (srv *ProverServer) CreateAssignment(c echo.Context) error {
}

if !ok {
log.Warn("Insufficient prover balance", "prover", srv.proverAddress)
log.Warn(
"Insufficient prover balance, please get more tokens or wait for verification of the blocks you proved",
"prover", srv.proverAddress,
)
return echo.NewHTTPError(http.StatusUnprocessableEntity, "insufficient prover balance")
}
}
Expand Down

0 comments on commit fff96f4

Please sign in to comment.