We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2efa48 + 2e2265d commit c7ff13bCopy full SHA for c7ff13b
src/adapter/templates/readMemory.ts
@@ -24,7 +24,7 @@ export const readMemory = remoteFunction(function (
24
return encodeHex(new Uint8Array(buffer, readStart, readCount));
25
26
function encodeHex(buffer: Uint8Array) {
27
- const dictionary = '0123456789abcedf';
+ const dictionary = '0123456789abcdef';
28
let output = '';
29
for (let i = 0; i < buffer.length; i++) {
30
const b = buffer[i];
0 commit comments