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.
9 lines
163 B
Modula-2
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
|
|
)
|