[#151] netmap: fix error message in _deploy
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
c5e026c6e7
commit
2472678b9f
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ func _deploy(data interface{}, isUpdate bool) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(addrBalance) != 20 || len(addrContainer) != 20 {
|
if len(addrBalance) != 20 || len(addrContainer) != 20 {
|
||||||
panic("init: incorrect length of contract script hash")
|
panic("_deploy: incorrect length of contract script hash")
|
||||||
}
|
}
|
||||||
|
|
||||||
// epoch number is a little endian int, it doesn't need to be serialized
|
// epoch number is a little endian int, it doesn't need to be serialized
|
||||||
|
|
Loading…
Reference in a new issue