dcrjson: Minor jsonerr.go update.

This commit is contained in:
J Fixby 2021-06-21 10:43:05 +02:00 committed by GitHub
parent dbc6eeb56b
commit afff2fdbcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,11 +69,11 @@ var (
var (
ErrClientNotConnected = RPCError{
Code: -9,
Message: "dcrd is not connected",
Message: "node is not connected",
}
ErrClientInInitialDownload = RPCError{
Code: -10,
Message: "dcrd is downloading blocks...",
Message: "node is downloading blocks...",
}
)