Problem
I cannot resolve this type annotation warning:
var slot0Bytes: [UInt8] = []
// ^^^^^^ type annotation is redundant, type can be inferred
As trying to change it to a cast does not work either:
var slot0Bytes = [] as [UInt8]
// ^^^^^^ static cast is redundant
Problem
I cannot resolve this type annotation warning:
As trying to change it to a cast does not work either: