From ad8bdbed21e89a07b7f68c118bbc8e142f5f726b Mon Sep 17 00:00:00 2001 From: Ori Newman Date: Tue, 9 Nov 2021 00:32:56 +0200 Subject: [PATCH] Update changelog (#1845) Co-authored-by: Kaspa Profiler <> --- changelog.txt | 5 +++++ cmd/kaspawallet/daemon/client/client.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 14162f090..67e9cfc48 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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: diff --git a/cmd/kaspawallet/daemon/client/client.go b/cmd/kaspawallet/daemon/client/client.go index 487965b69..6cfd38a32 100644 --- a/cmd/kaspawallet/daemon/client/client.go +++ b/cmd/kaspawallet/daemon/client/client.go @@ -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 }