File tree Expand file tree Collapse file tree 6 files changed +24
-6
lines changed Expand file tree Collapse file tree 6 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 1+ # Security Policy
2+
3+ ## Supported Versions
4+
5+ The last major ` btcd ` release is to be considered the current support version.
6+ Given an issue severe enough, a backport will be issued either to the prior
7+ major release or the set of releases considered utilized enough.
8+
9+ ## Reporting a Vulnerability
10+
11+ To report security issues, send an email to
[email protected] 12+ (this list isn't to be used for support).
13+
14+ The following key can be used to communicate sensitive information: `91FE 464C
15+ D751 01DA 6B6B AB60 555C 6465 E5BC B3AF`.
Original file line number Diff line number Diff line change @@ -341,6 +341,9 @@ var MainNetParams = Params{
341341 {691719 , newHashFromStr ("00000000000000000008a89e854d57e5667df88f1cdef6fde2fbca1de5b639ad" )},
342342 {724466 , newHashFromStr ("000000000000000000052d314a259755ca65944e68df6b12a067ea8f1f5a7091" )},
343343 {751565 , newHashFromStr ("00000000000000000009c97098b5295f7e5f183ac811fb5d1534040adb93cabd" )},
344+ {781565 , newHashFromStr ("00000000000000000002b8c04999434c33b8e033f11a977b288f8411766ee61c" )},
345+ {800000 , newHashFromStr ("00000000000000000002a7c4c1e48d76c5a37902165a270156b7a8d72728a054" )},
346+ {810000 , newHashFromStr ("000000000000000000028028ca82b6aa81ce789e4eb9e0321b74c3cbaf405dd1" )},
344347 },
345348
346349 // Consensus rule change deployments.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/btcsuite/btcd
22
33require (
44 github.com/btcsuite/btcd/btcec/v2 v2.1.3
5- github.com/btcsuite/btcd/btcutil v1.1.4
5+ github.com/btcsuite/btcd/btcutil v1.1.5
66 github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
77 github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
88 github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ github.com/btcsuite/btcd/btcec/v2 v2.1.3 h1:xM/n3yIhHAhHy04z4i43C8p4ehixJZMsnrVJ
88github.com/btcsuite/btcd/btcec/v2 v2.1.3 /go.mod h1:ctjw4H1kknNJmRN4iP1R7bTQ+v3GJkZBd6mui8ZsAZE =
99github.com/btcsuite/btcd/btcutil v1.0.0 /go.mod h1:Uoxwv0pqYWhD//tfTiipkxNfdhG9UrLwaeswfjfdF0A =
1010github.com/btcsuite/btcd/btcutil v1.1.0 /go.mod h1:5OapHB7A2hBBWLm48mmw4MOHNJCcUBTwmWH/0Jn8VHE =
11- github.com/btcsuite/btcd/btcutil v1.1.4 h1:mWvWRLRIPuoeZsVRpc0xNCkfeNxWy1E4jIZ06ZpGI1A =
12- github.com/btcsuite/btcd/btcutil v1.1.4 /go.mod h1:PSZZ4UitpLBWzxGd5VGOrLnmOjtPP/a6HaFo12zMs00 =
11+ github.com/btcsuite/btcd/btcutil v1.1.5 h1:+wER79R5670vs/ZusMTF1yTcRYE5GUsFbdjdisflzM8 =
12+ github.com/btcsuite/btcd/btcutil v1.1.5 /go.mod h1:PSZZ4UitpLBWzxGd5VGOrLnmOjtPP/a6HaFo12zMs00 =
1313github.com/btcsuite/btcd/chaincfg/chainhash v1.0.0 /go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc =
1414github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 /go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc =
1515github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 h1:59Kx4K6lzOW5w6nFlA0v5+lk/6sjybR934QNHSJZPTQ =
Original file line number Diff line number Diff line change @@ -733,10 +733,10 @@ out:
733733
734734 // Reset the connection state and signal the reconnect
735735 // has happened.
736+ c .mtx .Lock ()
736737 c .wsConn = wsConn
737738 c .retryCount = 0
738739
739- c .mtx .Lock ()
740740 c .disconnect = make (chan struct {})
741741 c .disconnected = false
742742 c .mtx .Unlock ()
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
1717// versioning 2.0.0 spec (http://semver.org/).
1818const (
1919 appMajor uint = 0
20- appMinor uint = 23
21- appPatch uint = 3
20+ appMinor uint = 24
21+ appPatch uint = 0
2222
2323 // appPreRelease MUST only contain characters from semanticAlphabet
2424 // per the semantic versioning spec.
You can’t perform that action at this time.
0 commit comments