mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
991ee7e81b
* checkpoint on super sync with reputation * ensure handling only expected peers msg * exclusive of finalized block * skip block saved already * clean up struct * remove 2 more fields * _ * everything builds, but doesnt test yet * lint * fix p2p tests * space * space * space * fmt * fmt
12 lines
116 B
Go
12 lines
116 B
Go
package p2p
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestBuildOptions(t *testing.T) {
|
|
opts := buildOptions(1, 10)
|
|
|
|
_ = opts
|
|
}
|