Skip to content

Commit

Permalink
deps: Update to latest modules.
Browse files Browse the repository at this point in the history
This updates the direct module dependencies as follows:

- decred.org/dcrwallet/[email protected]
- github.com/decred/dcrd/dcrutil/[email protected]
- github.com/decred/dcrd/rpc/jsonrpc/types/[email protected]

It also updates the indirect module dependencies as follows:

- github.com/decred/dcrd/dcrec/secp256k1/[email protected]
- github.com/decred/dcrd/txscript/[email protected]
- github.com/decred/dcrd/[email protected]
- github.com/klauspost/cpuid/[email protected]
- golang.org/x/[email protected]
- lukechampine.com/[email protected]

This allows support for the new mix related chain server RPC methods:

Chain:

- getmixpairrequests
- sendrawmixmessage

It also adds support for a new wallet RPC method:

- spendoutputs
  • Loading branch information
davecgh committed May 16, 2024
1 parent 3493122 commit 23e067e
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 53 deletions.
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"github.com/decred/dcrd/dcrjson/v4"
"github.com/decred/dcrd/dcrutil/v4"

wallettypes "decred.org/dcrwallet/v3/rpc/jsonrpc/types"
wallettypes "decred.org/dcrwallet/v4/rpc/jsonrpc/types"
dcrdtypes "github.com/decred/dcrd/rpc/jsonrpc/types/v4"

flags "github.com/jessevdk/go-flags"
Expand Down
2 changes: 1 addition & 1 deletion dcrctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"path/filepath"
"strings"

wallettypes "decred.org/dcrwallet/v3/rpc/jsonrpc/types"
wallettypes "decred.org/dcrwallet/v4/rpc/jsonrpc/types"
"github.com/decred/dcrd/dcrjson/v4"
dcrdtypes "github.com/decred/dcrd/rpc/jsonrpc/types/v4"
)
Expand Down
18 changes: 9 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ module decred.org/dcrctl
go 1.17

require (
decred.org/dcrwallet/v3 v3.0.1
decred.org/dcrwallet/v4 v4.0.0
github.com/decred/dcrd/dcrjson/v4 v4.0.1
github.com/decred/dcrd/dcrutil/v4 v4.0.1
github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.1.0
github.com/decred/dcrd/dcrutil/v4 v4.0.2
github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.2.0
github.com/decred/go-socks v1.1.0
github.com/jessevdk/go-flags v1.5.0
)
Expand All @@ -20,11 +20,11 @@ require (
github.com/decred/dcrd/crypto/ripemd160 v1.0.2 // indirect
github.com/decred/dcrd/dcrec v1.0.1 // indirect
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.3 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/decred/dcrd/txscript/v4 v4.1.0 // indirect
github.com/decred/dcrd/wire v1.6.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/decred/dcrd/txscript/v4 v4.1.1 // indirect
github.com/decred/dcrd/wire v1.7.0 // indirect
github.com/decred/slog v1.2.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
golang.org/x/sys v0.6.0 // indirect
lukechampine.com/blake3 v1.2.1 // indirect
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
golang.org/x/sys v0.20.0 // indirect
lukechampine.com/blake3 v1.3.0 // indirect
)
Loading

0 comments on commit 23e067e

Please sign in to comment.