forked from TrueCloudLab/frostfs-contract
[#38] container: Fix DelInfo owner type
It is not a 20-byte scripthash, it is a 25-byte slice (prefix + script-hash + checksum). Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
c6a7820363
commit
391c1cb5d4
1 changed files with 1 additions and 1 deletions
|
@ -339,7 +339,7 @@ func Delete(containerID []byte, signature interop.Signature, publicKey interop.P
|
||||||
}
|
}
|
||||||
|
|
||||||
type DelInfo struct {
|
type DelInfo struct {
|
||||||
Owner interop.Hash160
|
Owner []byte
|
||||||
Epoch int
|
Epoch int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue