Skip to content

Commit 3e16706

Browse files
authored
Bump to v2.1.2 (#4014)
1 parent 65c4215 commit 3e16706

File tree

6 files changed

+115
-97
lines changed

6 files changed

+115
-97
lines changed

app/helpers/tickets.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,14 @@ export function decodeVoteScript(network, outputScript) {
128128
choices: { 0x0020: "no", 0x0040: "yes" },
129129
defaultChoice: "abstain"
130130
}
131+
],
132+
12: [
133+
{
134+
mask: 0x0006,
135+
name: "maxtreasuryspend",
136+
choices: { 0x0002: "no", 0x0004: "yes" },
137+
defaultChoice: "abstain"
138+
}
131139
]
132140
},
133141
mainnet: {
@@ -216,6 +224,14 @@ export function decodeVoteScript(network, outputScript) {
216224
choices: { 0x0020: "no", 0x0040: "yes" },
217225
defaultChoice: "abstain"
218226
}
227+
],
228+
11: [
229+
{
230+
mask: 0x0006,
231+
name: "maxtreasuryspend",
232+
choices: { 0x0002: "no", 0x0004: "yes" },
233+
defaultChoice: "abstain"
234+
}
219235
]
220236
}
221237
};

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "decrediton",
33
"productName": "Decrediton",
4-
"version": "2.1.1",
4+
"version": "2.1.2",
55
"description": "Graphical wallet for Decred supporting staking, privacy, and decentralized exchange.",
66
"main": "./main.js",
77
"author": {

go.mod

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ module github.com/decred/decrediton
33
go 1.24.0
44

55
require (
6-
decred.org/dcrdex v1.0.4
6+
decred.org/dcrdex v1.0.5
77
github.com/decred/slog v1.2.0
88
github.com/jrick/logrotate v1.0.0
99
)
1010

1111
require (
12-
decred.org/dcrwallet/v4 v4.3.1 // indirect
12+
decred.org/dcrwallet/v5 v5.0.2 // indirect
1313
github.com/Microsoft/go-winio v0.6.2 // indirect
1414
github.com/bits-and-blooms/bitset v1.13.0 // indirect
1515
github.com/consensys/bavard v0.1.13 // indirect
@@ -18,10 +18,11 @@ require (
1818
github.com/crate-crypto/go-kzg-4844 v1.0.0 // indirect
1919
github.com/dcrlabs/bchwallet v0.0.0-20240114124852-0e95005810be // indirect
2020
github.com/dcrlabs/ltcwallet v0.0.0-20240823165752-3e026e8da010 // indirect
21+
github.com/decred/dcrd/addrmgr/v3 v3.0.0 // indirect
2122
github.com/decred/dcrd/container/lru v1.0.0 // indirect
2223
github.com/decred/dcrd/crypto/rand v1.0.1 // indirect
23-
github.com/decred/dcrd/mixing v0.5.0 // indirect
24-
github.com/decred/vspd/client/v4 v4.0.1 // indirect
24+
github.com/decred/dcrd/mixing v0.6.0 // indirect
25+
github.com/decred/vspd/client/v4 v4.0.2 // indirect
2526
github.com/decred/vspd/types/v2 v2.1.0 // indirect
2627
github.com/decred/vspd/types/v3 v3.0.0 // indirect
2728
github.com/ethereum/c-kzg-4844 v1.0.0 // indirect
@@ -33,7 +34,7 @@ require (
3334
github.com/mmcloughlin/addchain v0.4.0 // indirect
3435
github.com/pmezard/go-difflib v1.0.0 // indirect
3536
github.com/stretchr/objx v0.5.2 // indirect
36-
github.com/stretchr/testify v1.9.0 // indirect
37+
github.com/stretchr/testify v1.10.0 // indirect
3738
github.com/supranational/blst v0.3.13 // indirect
3839
gopkg.in/yaml.v3 v3.0.1 // indirect
3940
rsc.io/tmplfunc v0.0.3 // indirect
@@ -69,32 +70,31 @@ require (
6970
github.com/dchest/siphash v1.2.3 // indirect
7071
github.com/dcrlabs/neutrino-bch v0.0.0-20240114121828-d656bce11095 // indirect
7172
github.com/deckarep/golang-set/v2 v2.6.0 // indirect
72-
github.com/decred/base58 v1.0.5 // indirect
73-
github.com/decred/dcrd/addrmgr/v2 v2.0.4 // indirect
74-
github.com/decred/dcrd/blockchain/stake/v5 v5.0.1 // indirect
75-
github.com/decred/dcrd/blockchain/standalone/v2 v2.2.1 // indirect
73+
github.com/decred/base58 v1.0.6 // indirect
74+
github.com/decred/dcrd/blockchain/stake/v5 v5.0.2 // indirect
75+
github.com/decred/dcrd/blockchain/standalone/v2 v2.2.2 // indirect
7676
github.com/decred/dcrd/certgen v1.2.0 // indirect
77-
github.com/decred/dcrd/chaincfg/chainhash v1.0.4 // indirect
78-
github.com/decred/dcrd/chaincfg/v3 v3.2.1 // indirect
79-
github.com/decred/dcrd/connmgr/v3 v3.1.2 // indirect
77+
github.com/decred/dcrd/chaincfg/chainhash v1.0.5 // indirect
78+
github.com/decred/dcrd/chaincfg/v3 v3.3.0 // indirect
79+
github.com/decred/dcrd/connmgr/v3 v3.1.3 // indirect
8080
github.com/decred/dcrd/crypto/blake256 v1.1.0 // indirect
8181
github.com/decred/dcrd/crypto/ripemd160 v1.0.2 // indirect
82-
github.com/decred/dcrd/database/v3 v3.0.2 // indirect
82+
github.com/decred/dcrd/database/v3 v3.0.3 // indirect
8383
github.com/decred/dcrd/dcrec v1.0.1 // indirect
84-
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.3 // indirect
85-
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
86-
github.com/decred/dcrd/dcrjson/v4 v4.1.0 // indirect
87-
github.com/decred/dcrd/dcrutil/v4 v4.0.2 // indirect
88-
github.com/decred/dcrd/gcs/v4 v4.1.0 // indirect
89-
github.com/decred/dcrd/hdkeychain/v3 v3.1.2 // indirect
84+
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.4 // indirect
85+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
86+
github.com/decred/dcrd/dcrjson/v4 v4.2.0 // indirect
87+
github.com/decred/dcrd/dcrutil/v4 v4.0.3 // indirect
88+
github.com/decred/dcrd/gcs/v4 v4.1.1 // indirect
89+
github.com/decred/dcrd/hdkeychain/v3 v3.1.3 // indirect
9090
github.com/decred/dcrd/lru v1.1.2 // indirect
91-
github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.3.0 // indirect
92-
github.com/decred/dcrd/rpcclient/v8 v8.0.1 // indirect
93-
github.com/decred/dcrd/txscript/v4 v4.1.1 // indirect
94-
github.com/decred/dcrd/wire v1.7.0 // indirect
91+
github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.4.0 // indirect
92+
github.com/decred/dcrd/rpcclient/v8 v8.1.0 // indirect
93+
github.com/decred/dcrd/txscript/v4 v4.1.2 // indirect
94+
github.com/decred/dcrd/wire v1.7.2 // indirect
9595
github.com/decred/go-socks v1.1.0 // indirect
9696
github.com/dgraph-io/badger v1.6.2 // indirect
97-
github.com/dgraph-io/ristretto v0.0.2 // indirect
97+
github.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de // indirect
9898
github.com/dustin/go-humanize v1.0.1 // indirect
9999
github.com/ethereum/go-ethereum v1.14.13 // indirect
100100
github.com/fsnotify/fsnotify v1.6.0 // indirect
@@ -108,7 +108,7 @@ require (
108108
github.com/gofrs/flock v0.8.1 // indirect
109109
github.com/golang/protobuf v1.5.4 // indirect
110110
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
111-
github.com/google/uuid v1.3.1 // indirect
111+
github.com/google/uuid v1.6.0 // indirect
112112
github.com/gorilla/websocket v1.5.1 // indirect
113113
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
114114
github.com/holiman/uint256 v1.3.1 // indirect
@@ -144,16 +144,16 @@ require (
144144
github.com/tklauser/numcpus v0.6.1 // indirect
145145
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
146146
github.com/zquestz/grab v0.0.0-20190224022517-abcee96e61b1 // indirect
147-
go.etcd.io/bbolt v1.3.11 // indirect
147+
go.etcd.io/bbolt v1.3.12 // indirect
148148
golang.org/x/crypto v0.45.0 // indirect
149149
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
150150
golang.org/x/net v0.47.0 // indirect
151151
golang.org/x/sync v0.18.0 // indirect
152152
golang.org/x/sys v0.38.0 // indirect
153153
golang.org/x/term v0.37.0 // indirect
154154
golang.org/x/text v0.31.0 // indirect
155-
golang.org/x/time v0.5.0 // indirect
156-
google.golang.org/protobuf v1.34.2 // indirect
155+
golang.org/x/time v0.9.0 // indirect
156+
google.golang.org/protobuf v1.36.10 // indirect
157157
gopkg.in/ini.v1 v1.67.0 // indirect
158158
lukechampine.com/blake3 v1.3.0 // indirect
159159
)

0 commit comments

Comments
 (0)