On Tue, Jun 16, 2020 at 5:18 PM David Santiago <deman...@gmail.com> wrote:
> my uint8 @data = $ed.data[0..$ed.data_size-1].Array;
> my Blob $bindata = Blob[uint8].new(@data);

Not absolutely sure, but it seems like you are copying the data twice.
Try just

my $bindata = Blob.new($ed.data[^$ed.data_size]);

Reply via email to