-
Notifications
You must be signed in to change notification settings - Fork 47
Closed
Labels
kind/bugKind: BugKind: Bug
Description
Describe the bug:
msapproval task error: failed to find transaction: pending transaction 1 not found:
lily/tasks/msapprovals/msapprovals.go
Lines 240 to 257 in 0087552
var tx *transaction | |
if err := prevActorState.ForEachPendingTxn(func(id int64, txn multisig.Transaction) error { | |
if id == int64(params.ID) { | |
tx = &transaction{ | |
id: int64(params.ID), | |
to: txn.To.String(), | |
value: txn.Value.String(), | |
} | |
} | |
return nil | |
}); err != nil { | |
return false, nil, xerrors.Errorf("failed to read transaction details: %w", err) | |
} | |
if tx == nil { | |
return false, nil, xerrors.Errorf("pending transaction %d not found", params.ID) | |
} |
Steps to Reproduce:
Lily Version: v0.8.5
Metadata
Metadata
Assignees
Labels
kind/bugKind: BugKind: Bug
Type
Projects
Status
Done