We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f298925 commit 441c616Copy full SHA for 441c616
logic/ltx/ltx.go
@@ -39,6 +39,7 @@ func CheckRegularTransaction(transaction *tx.Tx) error {
39
}
40
41
// check standard
42
+ // ToDo: config
43
if model.ActiveNetParams.RequireStandard {
44
err := transaction.CheckStandard()
45
if err != nil {
model/opcodes/opcode.go renamed to model/opcodes/opcodes.go
@@ -135,8 +135,8 @@ const (
135
OP_NOP9 = 0xb8
136
OP_NOP10 = 0xb9
137
// More crypto
138
- OP_CHECKDATASIG = 0xba
139
- OP_CHECKDATASIGVERIFY = 0xbb
+ //OP_CHECKDATASIG = 0xba
+ //OP_CHECKDATASIGVERIFY = 0xbb
140
// The first op_code value after all defined opcodes
141
FIRST_UNDEFINED_OP_VALUE
142
0 commit comments