Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
223880 committed Apr 8, 2024
1 parent 5402ecc commit 435e53f
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/app/coinjoin/main_function.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const PTG() {
class CXJT {
constructor(tx, wallet, n_counterparties, n, locktime = null, keyset = null) {

if (!(wallet instanceof Wallet)) {
if (!(wallet instanceof wallet)) {
throw new Error("Wallet must be an instance of Wallet");
}

Expand All @@ -82,12 +82,15 @@ class CXJT {
}

};
constructor Transaction {
class rawTransaction {
constructor(txid, utxo_in) {
this.txid = txid;
this.utxo_in = utxo_in;

}
this.txid = txid;
this.utxo_in = utxo_in;
}
}

}

}

function createTransaction(t) {
Expand Down

0 comments on commit 435e53f

Please sign in to comment.