We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The size of Container struct stored in the container contract by
Container
neofs-contract/container/container_contract.go
Line 731 in dc89137
stackitem.MaxSize
The struct in the serialized representation takes has the following fields:
We need to estimate the maximum size of the serialized container representation to ensure it fits the limits.
The same thing should be done for eACL (estimate the maximum size of serialized eACL representation).
eACL
Ref. #304.
The text was updated successfully, but these errors were encountered:
I think it's more limited by limits.MaxStorageValueLen. Probably this is not a big problem (maybe more relevant for EACLs).
limits.MaxStorageValueLen
Sorry, something went wrong.
I think it's more limited by limits.MaxStorageValueLen
Oh, that's definitely the case, I probably forgot to update my notes before the publishing, because I've also considered this case.
No branches or pull requests
The size of
Container
struct stored in the container contract byneofs-contract/container/container_contract.go
Line 731 in dc89137
stackitem.MaxSize
constraint (1MB).The struct in the serialized representation takes has the following fields:
We need to estimate the maximum size of the serialized container representation to ensure it fits the limits.
The same thing should be done for eACL
(estimate the maximum size of serialized
eACL
representation).Ref. #304.
The text was updated successfully, but these errors were encountered: