Skip to content

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmyshchyshyn committed Nov 13, 2024
1 parent d8a2e00 commit 8419ef6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/types/Time.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export class Duration {
}

static parseDurationString(durationStr: string): number {
console.log(durationStr);
const parts = durationStr.match(/(\d+)([smhd])/g);
if (!parts) throw new Error('Invalid duration format');

Expand Down
4 changes: 0 additions & 4 deletions src/types/Transaction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,6 @@ describe('Test Transaction', () => {
const toJson = TransactionV1.toJson(transaction);
const parsed = TransactionV1.fromJSON(toJson.transaction);

console.log(toJson);
console.log(parsed);
console.log(JSON.stringify(toJson));

const transactionPaymentAmount = parsed.body.args.args
.get('amount')!
.toString();
Expand Down

0 comments on commit 8419ef6

Please sign in to comment.