Skip to content

Commit

Permalink
style: run npm format
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitika committed Oct 24, 2024
1 parent d842741 commit 7e82da8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/core/src/encoding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,8 @@ const hrpFromNetwork = (network: Network): string => {
};

export const parseSilentBlock = (data: Buffer): SilentBlock => {
const type = data.readUInt8(0); // read 8 bits from 0th index // unsigned integer - UInt
const type = data.readUInt8(0);
const transactions = [];

let cursor = 1;
const count = readVarInt(data, cursor);
cursor += encodingLength(count);
Expand Down

0 comments on commit 7e82da8

Please sign in to comment.