Skip to content

Commit 2e2265d

Browse files
committed
fix hex typo
1 parent a2efa48 commit 2e2265d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adapter/templates/readMemory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const readMemory = remoteFunction(function (
2424
return encodeHex(new Uint8Array(buffer, readStart, readCount));
2525

2626
function encodeHex(buffer: Uint8Array) {
27-
const dictionary = '0123456789abcedf';
27+
const dictionary = '0123456789abcdef';
2828
let output = '';
2929
for (let i = 0; i < buffer.length; i++) {
3030
const b = buffer[i];

0 commit comments

Comments
 (0)