mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
9edba29f64
* slashing simulator * add in necessary items for slasher sim * sim item * fix up * fixed build * rev * slasher sim in testing * testonly * gaz * gaz * fix viz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: prestonvanloon <preston@prysmaticlabs.com>
32 lines
816 B
Go
32 lines
816 B
Go
package simulator
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func TestGenerateBlockHeadersForSlot_Slashing(t *testing.T) {
|
|
ctx := context.Background()
|
|
simParams := &Parameters{
|
|
AggregationPercent: 1,
|
|
NumValidators: 64,
|
|
ProposerSlashingProbab: 1,
|
|
}
|
|
srv := setupService(t, simParams)
|
|
|
|
slot1Blocks, _, err := srv.generateBlockHeadersForSlot(ctx, 1)
|
|
require.NoError(t, err)
|
|
require.Equal(t, 2, len(slot1Blocks))
|
|
|
|
block1Root, err := slot1Blocks[0].HashTreeRoot()
|
|
require.NoError(t, err)
|
|
block2Root, err := slot1Blocks[1].HashTreeRoot()
|
|
require.NoError(t, err)
|
|
if slot1Blocks[0].Header.ProposerIndex == slot1Blocks[1].Header.ProposerIndex && bytes.Equal(block1Root[:], block2Root[:]) {
|
|
t.Error("Blocks received were not slashable")
|
|
}
|
|
}
|