Posted on c/ElrondDevelopers 1 Die294003185c/ElrondDevelopers 3 years ago what do you mean by "my bytes"? Comment 1 Comments guest8296696656 3years ago const STR: &str = "this is a string" const BYTES: &[u8] = b"this is bytes" The STR use allocation, and thus increasing your gas fees. The BYTES is allocation free
const STR: &str = "this is a string" const BYTES: &[u8] = b"this is bytes" The STR use allocation, and thus increasing your gas fees. The BYTES is allocation free