mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00
Number of operations is per-script not per-transaction.
Reset the counter at the end of each script.
This commit is contained in:
parent
bc41004b03
commit
7b08a4e127
@ -413,7 +413,7 @@ func (m *Script) Step() (done bool, err error) {
|
||||
// prepare for next instruction
|
||||
m.scriptoff++
|
||||
if m.scriptoff >= len(m.scripts[m.scriptidx]) {
|
||||
// should only be == from checks before
|
||||
m.numOps = 0 // number of ops is per script.
|
||||
m.scriptoff = 0
|
||||
if m.scriptidx == 0 && m.bip16 {
|
||||
m.savedFirstStack = m.GetStack()
|
||||
|
Loading…
x
Reference in New Issue
Block a user