rpc: Use latest dcrd & dcrwallet

This commit is contained in:
jholdstock 2023-06-05 12:53:20 +01:00 committed by Jamie Holdstock
parent 7cb4681639
commit 64e044f4ed
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ import (
) )
var ( var (
requiredDcrdVersion = semver{Major: 7, Minor: 0, Patch: 0} requiredDcrdVersion = semver{Major: 8, Minor: 0, Patch: 0}
) )
// These error codes are defined in dcrd/dcrjson. They are copied here so we // These error codes are defined in dcrd/dcrjson. They are copied here so we

View File

@ -16,7 +16,7 @@ import (
) )
var ( var (
requiredWalletVersion = semver{Major: 8, Minor: 8, Patch: 0} requiredWalletVersion = semver{Major: 9, Minor: 0, Patch: 0}
) )
// WalletRPC provides methods for calling dcrwallet JSON-RPCs without exposing the details // WalletRPC provides methods for calling dcrwallet JSON-RPCs without exposing the details