Skip to content

Commit

Permalink
Update changelog (#1845)
Browse files Browse the repository at this point in the history
Co-authored-by: Kaspa Profiler <>
  • Loading branch information
someone235 authored Nov 8, 2021
1 parent 7cdceb6 commit ad8bdbe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Kaspad v0.11.1 - 2021-11-09
===========================
Non-breaking changes:
* Cache the miner state

Kaspad v0.10.2 - 2021-05-18
===========================
Non-breaking changes:
Expand Down
2 changes: 1 addition & 1 deletion cmd/kaspawallet/daemon/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func Connect(address string) (pb.KaspawalletdClient, func(), error) {
conn, err := grpc.DialContext(ctx, address, grpc.WithInsecure(), grpc.WithBlock())
if err != nil {
if errors.Is(err, context.DeadlineExceeded) {
return nil, nil, errors.New("kaspactl daemon is not running, start it with `kaspactl start-daemon`")
return nil, nil, errors.New("kaspawallet daemon is not running, start it with `kaspawallet start-daemon`")
}
return nil, nil, err
}
Expand Down

0 comments on commit ad8bdbe

Please sign in to comment.