open fun readBytesList(): MutableList<Bytes!>!
(source)
Read a list of Bytes
from the SSZ source. Note: prefer to use #readBytesList(int)
instead, especially when reading untrusted data.
InvalidSSZTypeException
- If the next SSZ value is not a list, any value in the list is not a byte array, or any byte array is too large (greater than 2^32 bytes).
EndOfSSZException
- If there are no more SSZ values to read.
Return
MutableList<Bytes!>!: A list of Bytes
.
abstract fun readBytesList(limit: Int): MutableList<Bytes!>!
(source)
Read a list of Bytes
from the SSZ source.
limit
- Int: The maximum number of bytes to read for each list element.
InvalidSSZTypeException
- If the next SSZ value is not a list, any value in the list is not a byte array, or the size of any byte array would exceed the limit.
EndOfSSZException
- If there are no more SSZ values to read.