Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate max-size constants for dynamic fields
For example, for the struct: ``` type Log struct { Data []Uint256 `json:"data" ssz-max:"6000"` } ``` Will be generated the following constant in `log_encoding.go`: `const LogMaxDataSize = 6000` Signed-off-by: Mikhail Sherstennikov <[email protected]>
- Loading branch information