smartcontract: rename parameter ByteString to ByteArray
Debugger expects it to be ByteArray. C# compiler also compiles it
as `ByteArray` (in both manifest and debug.json).
The previous commit 6a2161207a
changed
this line as C# implementation serializes Blockchain.ApplicationExecuted.Stack
as array of stackitem.Item and deserializes it as array of
smartcontract.Parameter.
This commit is contained in:
parent
483eed1852
commit
bcb7b9ba63
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ func (pt ParamType) String() string {
|
||||||
case Hash256Type:
|
case Hash256Type:
|
||||||
return "Hash256"
|
return "Hash256"
|
||||||
case ByteArrayType:
|
case ByteArrayType:
|
||||||
return "ByteString"
|
return "ByteArray"
|
||||||
case PublicKeyType:
|
case PublicKeyType:
|
||||||
return "PublicKey"
|
return "PublicKey"
|
||||||
case StringType:
|
case StringType:
|
||||||
|
|
Loading…
Reference in a new issue