Skip to content

Commit

Permalink
check auth null
Browse files Browse the repository at this point in the history
check if auth is null before activating ecdsa recovery
  • Loading branch information
ak88 committed Oct 10, 2024
1 parent 34eed04 commit e9827e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void RecoverData(Block block)
{
tx.AuthorizationList[i].Authority = poolTx.AuthorizationList[i].Authority;
}
else
else if (tx.AuthorizationList[i].Authority is null)
{
recoverFromEcdsa++;
}
Expand Down

0 comments on commit e9827e4

Please sign in to comment.