mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 12:07:17 +00:00
1a94b85bec
* added secp256k1 fuzzer * Updated references to secp256k1 and erigon-lib * Update go.sum * Update go.mod * Update go.mod * Update go.sum Co-authored-by: ledgerwatch <akhounov@gmail.com>
9 lines
171 B
Go
9 lines
171 B
Go
package secp256k1
|
|
|
|
import "testing"
|
|
|
|
func TestFuzzer(t *testing.T) {
|
|
test := "00000000N0000000/R00000000000000000U0000S0000000mkhP000000000000000U"
|
|
Fuzz([]byte(test))
|
|
}
|