Skip to content

Commit

Permalink
fix string template
Browse files Browse the repository at this point in the history
  • Loading branch information
lenkan committed Feb 13, 2024
1 parent a646807 commit 9bae76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keri/core/number.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class CesrNumber extends Matter {
// make huge version of code
code = code = NumDex.Huge;
} else {
throw new Error('Invalid num = {num}, too large to encode.');
throw new Error(`Invalid num = ${num}, too large to encode.`);
}

raw = intToBytes(_num, Matter._rawSize(code));
Expand Down

0 comments on commit 9bae76d

Please sign in to comment.