You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the package marlowe.io/runtime-lifecycle, we have a couple of function that built, sign and submit Cardano Tx, but not wait till the confirmation of this Tx... 2 of them are :
As you can see, they are all returning a TxId. This gives the flexibility to handle waitConfirmation later on.
withdraw(payoutIds: PayoutId[]): Promise<void>; in the Payout Lifecycle should follow the same pattern, but at the moment, it is waiting a confirmation.
The goal of this issue is to remove waitConfimration from the body of this function and return the TxId instead.
in the package
marlowe.io/runtime-lifecycle
, we have a couple of function that built, sign and submit Cardano Tx, but not wait till the confirmation of this Tx... 2 of them are :As you can see, they are all returning a
TxId
. This gives the flexibility to handlewaitConfirmation
later on.withdraw(payoutIds: PayoutId[]): Promise<void>;
in the Payout Lifecycle should follow the same pattern, but at the moment, it is waiting a confirmation.The goal of this issue is to remove
waitConfimration
from the body of this function and return the TxId instead.The text was updated successfully, but these errors were encountered: