create transaction with type and wallet id when comming from wallet page

This commit is contained in:
Fran Jurmanović
2021-06-13 14:29:53 +02:00
parent 94e45bf33b
commit 7596c832d7
13 changed files with 246 additions and 79 deletions

View File

@@ -17,7 +17,6 @@ class Timer {
resume = () => {
this.start = Date.now();
window.clearTimeout(this.timerId);
console.log(this.remaining);
this.timerId = window.setTimeout(this.callback, this.remaining, ...this.args);
};