Skip to content

Commit

Permalink
-Added prefix to lbrycrd client init error.
Browse files Browse the repository at this point in the history
  • Loading branch information
tiger5226 committed May 8, 2018
1 parent 999dfed commit 7785052
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lbrycrd/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var LBRYcrdURL string
func Init() *upstream.Client {
lbrycrdClient, err := upstream.New(LBRYcrdURL)
if err != nil {
panic(err)
logrus.Panic("Initializing LBRYcrd Client: ", err)
}
defaultClient = lbrycrdClient
_, err = GetBalance()
Expand Down

0 comments on commit 7785052

Please sign in to comment.