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
// TODO: Separate TransactionState::Finalized, TransactionState::Accepted?
TransactionState::Finalized
| TransactionState::Accepted
| TransactionState::Confirmed => {
Should the inputs of a tx only be removed form the locked_outputs if it's finalized? Because if it's happening earlier, the indexer still provides the outputs as unspent and then it could lead to conflicting txs?
Do we update the InclusionState to also have Accepted and Finalized?
Do we also need other events than just TransactionInclusion?
The text was updated successfully, but these errors were encountered:
Description
For example here
iota-sdk/sdk/src/wallet/operations/syncing/transactions.rs
Lines 106 to 109 in 8c9317a
Should the inputs of a tx only be removed form the locked_outputs if it's finalized? Because if it's happening earlier, the indexer still provides the outputs as unspent and then it could lead to conflicting txs?
Do we update the InclusionState to also have Accepted and Finalized?
Do we also need other events than just TransactionInclusion?
The text was updated successfully, but these errors were encountered: