mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-25 23:42:23 +00:00
core: replace open-coded PUSHBYTES64 with the one from opcode
This commit is contained in:
parent
141d27795e
commit
31add423a8
1 changed files with 2 additions and 2 deletions
|
@ -15,6 +15,7 @@ import (
|
||||||
"github.com/CityOfZion/neo-go/pkg/io"
|
"github.com/CityOfZion/neo-go/pkg/io"
|
||||||
"github.com/CityOfZion/neo-go/pkg/smartcontract"
|
"github.com/CityOfZion/neo-go/pkg/smartcontract"
|
||||||
"github.com/CityOfZion/neo-go/pkg/util"
|
"github.com/CityOfZion/neo-go/pkg/util"
|
||||||
|
"github.com/CityOfZion/neo-go/pkg/vm/opcode"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -84,8 +85,7 @@ func newBlock(index uint32, txs ...*transaction.Transaction) *Block {
|
||||||
if err != nil || len(sig) != 64 {
|
if err != nil || len(sig) != 64 {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
// 0x40 is PUSHBYTES64
|
invScript = append(invScript, byte(opcode.PUSHBYTES64))
|
||||||
invScript = append(invScript, 0x40)
|
|
||||||
invScript = append(invScript, sig...)
|
invScript = append(invScript, sig...)
|
||||||
}
|
}
|
||||||
b.Script.InvocationScript = invScript
|
b.Script.InvocationScript = invScript
|
||||||
|
|
Loading…
Reference in a new issue