This downgrade changes StakePoolTicketFee back to the version which does not consider DCP-0012 activation. This resolves an issue where Decrediton sometimes fails to pay VSP fees, caused by Decrediton and vspd independently calculating the fee amount using different versions of the algorithm. Releasing the new algorithm will need to be more carefully coordinated, potentially requiring both client and server sides to be updated in sync.
74 lines
3.0 KiB
Modula-2
74 lines
3.0 KiB
Modula-2
module github.com/decred/vspd
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
decred.org/dcrwallet/v3 v3.1.0
|
|
github.com/decred/dcrd/blockchain/stake/v5 v5.0.0
|
|
github.com/decred/dcrd/blockchain/standalone/v2 v2.2.0
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.4
|
|
github.com/decred/dcrd/chaincfg/v3 v3.2.0
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0
|
|
github.com/decred/dcrd/dcrutil/v4 v4.0.1
|
|
github.com/decred/dcrd/gcs/v4 v4.0.0
|
|
github.com/decred/dcrd/hdkeychain/v3 v3.1.1
|
|
github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.1.0
|
|
github.com/decred/dcrd/txscript/v4 v4.1.0
|
|
github.com/decred/dcrd/wire v1.6.0
|
|
github.com/decred/slog v1.2.0
|
|
github.com/decred/vspd/client/v3 v3.0.0
|
|
github.com/decred/vspd/types/v2 v2.1.0
|
|
github.com/dustin/go-humanize v1.0.1
|
|
github.com/gin-gonic/gin v1.9.1
|
|
github.com/gorilla/sessions v1.2.1
|
|
github.com/jessevdk/go-flags v1.5.0
|
|
github.com/jrick/bitset v1.0.0
|
|
github.com/jrick/logrotate v1.0.0
|
|
github.com/jrick/wsrpc/v2 v2.3.5
|
|
go.etcd.io/bbolt v1.3.7
|
|
)
|
|
|
|
require (
|
|
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect
|
|
github.com/bytedance/sonic v1.9.1 // indirect
|
|
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
|
|
github.com/dchest/siphash v1.2.3 // indirect
|
|
github.com/decred/base58 v1.0.5 // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
|
|
github.com/decred/dcrd/crypto/ripemd160 v1.0.2 // indirect
|
|
github.com/decred/dcrd/database/v3 v3.0.1 // 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/dcrjson/v4 v4.0.1 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/go-playground/validator/v10 v10.14.1 // indirect
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
|
github.com/gorilla/securecookie v1.1.1 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/leodido/go-urn v1.2.4 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.11 // indirect
|
|
golang.org/x/arch v0.3.0 // indirect
|
|
golang.org/x/crypto v0.9.0 // indirect
|
|
golang.org/x/net v0.10.0 // indirect
|
|
golang.org/x/sys v0.12.0 // indirect
|
|
golang.org/x/text v0.10.0 // indirect
|
|
golang.org/x/time v0.3.0
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
lukechampine.com/blake3 v1.2.1 // indirect
|
|
)
|