Skip to content

Commit 73ed13d

Browse files
committed
fix(sdk-coin-canton): removed the non-required export
Ticket: COIN-5918
1 parent 510784b commit 73ed13d

File tree

1 file changed

+1
-1
lines changed
  • modules/sdk-coin-canton/resources/hash

1 file changed

+1
-1
lines changed

modules/sdk-coin-canton/resources/hash/hash.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function encodeInt64(value) {
4444
view.setBigInt64(0, num, false); // true for little-endian
4545
return new Uint8Array(buffer);
4646
}
47-
export async function encodeString(value = '') {
47+
async function encodeString(value = '') {
4848
const utf8Bytes = new TextEncoder().encode(value);
4949
return encodeBytes(utf8Bytes);
5050
}

0 commit comments

Comments
 (0)