Skip to content

Commit

Permalink
fix: bug in verifreg verifier event tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
frrist committed Feb 3, 2023
1 parent 720cc96 commit 1c432d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/actors/builtin/verifreg/diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func diffVerifierMap(ctx context.Context, store adt.Store, pre, cur State, preM,
return nil, err
}
case hamt.Remove:
if err := diffContainer.Add(change.Key, change.Before); err != nil {
if err := diffContainer.Remove(change.Key, change.Before); err != nil {
return nil, err
}
}
Expand Down

0 comments on commit 1c432d3

Please sign in to comment.