mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
975f0ea1af
* viz * unexport config * builds * viz * viz * register cfg * fuzz * blockchain opts * deepsource * rename flag opts
28 lines
595 B
Go
28 lines
595 B
Go
package blockchain
|
|
|
|
import (
|
|
"context"
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func init() {
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
logrus.SetOutput(ioutil.Discard)
|
|
}
|
|
|
|
func TestChainService_SaveHead_DataRace(t *testing.T) {
|
|
beaconDB := testDB.SetupDB(t)
|
|
s := &Service{
|
|
cfg: &config{BeaconDB: beaconDB},
|
|
}
|
|
go func() {
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
|
}()
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
|
}
|