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.
1 parent a2efa48 commit 2e2265dCopy full SHA for 2e2265d
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