show routing path to contact

This commit is contained in:
liamcottle 2025-02-12 01:10:17 +13:00
parent 46b18d00ae
commit 6ffd7ef270
3 changed files with 13 additions and 2 deletions

View file

@ -36,6 +36,12 @@ class BufferReader {
}
}
readInt8() {
const bytes = this.readBytes(1);
const view = new DataView(bytes.buffer);
return view.getInt8(0);
}
readUInt16LE() {
const bytes = this.readBytes(2);
const view = new DataView(bytes.buffer);