Skip to content

Commit b762e43

Browse files
authored
Merge branch 'master' into task/g229_add_addTransaction_to_aggregate
2 parents 2ee54b3 + 0fac822 commit b762e43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/format/Utilities.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ export const decodeChar = (c) => {
168168
};
169169

170170
export const decodeBlock = (input, inputOffset, output, outputOffset) => {
171-
const bytes = new Uint8Array(this.Encoded_Block_Size);
172-
for (let i = 0; i < this.Encoded_Block_Size; ++i) {
171+
const bytes = new Uint8Array(Encoded_Block_Size);
172+
for (let i = 0; i < Encoded_Block_Size; ++i) {
173173
bytes[i] = decodeChar(input[inputOffset + i]);
174174
}
175175

0 commit comments

Comments
 (0)