Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove counters from sigverify functions (solana-labs#2785)
These counters should be removed for several reasons: - Counters in general are bad (multiple atomics for a single value) - The counters are at debug level, so effectively unused - The reported values can be determined from SigVerifierStats The only thing lost is whether verification was done by cpu/gpu/disabled verifier. But, most validators are not running gpu's, so ripping this out now and it can be re-added more properly if more validators shift to using gpu's.
- Loading branch information