dcrd/blockchain/standalone/go.mod
Dave Collins 0ae1634cff
blockchain/standalone: Remove txscript dep.
The purpose of the standalone module is to avoid extra dependencies.
The treasury work unfortunately went against that goal and introduced a
dependency on txscript.  This remedies that by defining the necessary
opcodes directly which is perfectly acceptable because they are used in
consensus code and thus can't be changed without a vote.
2020-09-27 21:31:42 -05:00

9 lines
163 B
Modula-2

module github.com/decred/dcrd/blockchain/standalone/v2
go 1.11
require (
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
github.com/decred/dcrd/wire v1.4.0
)