Skip to content

Commit

Permalink
refactor: update outgoing escrow signing (#1500)
Browse files Browse the repository at this point in the history
  • Loading branch information
ookami-kb authored Jun 16, 2024
1 parent cadb710 commit dc0b187
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,7 @@ class CreateOutgoingEscrow {
platform: platformAccount,
),
)
.then((tx) => (tx: tx, escrow: escrowAccount))
.then((value) async {
final tx = await value.tx.resign(LocalWallet(escrowAccount));

return (tx: tx, escrow: value.escrow);
});
.then((value) => value.resign(LocalWallet(escrowAccount)))
.then((tx) => (tx: tx, escrow: escrowAccount));
}
}

0 comments on commit dc0b187

Please sign in to comment.