mirror of
https://github.com/FlipsideCrypto/dcrd.git
synced 2026-02-06 10:56:47 +00:00
Now that the chaincfg, chainhash, dcrec, edwards, secp256k1, dcrutil, wire, and slog modules have been defined, update the txscript module to only depend on them instead of the entire dcrd module.
14 lines
489 B
Modula-2
14 lines
489 B
Modula-2
module github.com/decred/dcrd/txscript
|
|
|
|
require (
|
|
github.com/decred/dcrd/chaincfg v1.0.1
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
|
|
github.com/decred/dcrd/dcrec v0.0.0-20180721031028-5369a485acf6
|
|
github.com/decred/dcrd/dcrec/edwards v0.0.0-20180721031028-5369a485acf6
|
|
github.com/decred/dcrd/dcrec/secp256k1 v1.0.0
|
|
github.com/decred/dcrd/dcrutil v1.0.0
|
|
github.com/decred/dcrd/wire v1.0.1
|
|
github.com/decred/slog v1.0.0
|
|
golang.org/x/crypto v0.0.0-20180718160520-a2144134853f
|
|
)
|