mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
Update to V4 🚀 (#12134)
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
This commit is contained in:
@@ -11,7 +11,7 @@ go_library(
|
||||
"sign_test.yaml.go",
|
||||
"verify_test.yaml.go",
|
||||
],
|
||||
importpath = "github.com/prysmaticlabs/prysm/v3/testing/spectest/general/phase0/bls",
|
||||
importpath = "github.com/prysmaticlabs/prysm/v4/testing/spectest/general/phase0/bls",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
|
||||
@@ -7,11 +7,11 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/ghodss/yaml"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/util"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/util"
|
||||
)
|
||||
|
||||
func TestAggregate(t *testing.T) {
|
||||
|
||||
@@ -7,12 +7,12 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/ghodss/yaml"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v3/encoding/bytesutil"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/util"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v4/encoding/bytesutil"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/util"
|
||||
)
|
||||
|
||||
func TestAggregateVerify(t *testing.T) {
|
||||
|
||||
@@ -7,12 +7,12 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/ghodss/yaml"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v3/encoding/bytesutil"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/util"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v4/encoding/bytesutil"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/util"
|
||||
)
|
||||
|
||||
func TestFastAggregateVerify(t *testing.T) {
|
||||
|
||||
@@ -8,11 +8,11 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/ghodss/yaml"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/util"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/util"
|
||||
)
|
||||
|
||||
func TestSign(t *testing.T) {
|
||||
|
||||
@@ -7,11 +7,11 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/ghodss/yaml"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v3/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/util"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls"
|
||||
"github.com/prysmaticlabs/prysm/v4/crypto/bls/common"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/utils"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/util"
|
||||
)
|
||||
|
||||
func TestVerify(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_EffectiveBalanceUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_Eth1DataReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_HistoricalRootsUpdate(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_InactivityUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_JustificationAndFinalization(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_ParticipationFlag(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_RandaoMixesReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_ResetRegistryUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_RewardsAndPenalties(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_SlashingsReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_EpochProcessing_Slashings(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package finality
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/finality"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/finality"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Finality(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package fork_helper
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/fork"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/fork"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_UpgradeToAltair(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package fork_transition
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/fork"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/fork"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Transition(t *testing.T) {
|
||||
|
||||
@@ -3,8 +3,8 @@ package forkchoice
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/runtime/version"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/common/forkchoice"
|
||||
"github.com/prysmaticlabs/prysm/v4/runtime/version"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/common/forkchoice"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Forkchoice(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Operations_Attestation(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Operations_AttesterSlashing(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Operations_BlockHeader(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Operations_Deposit(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Operations_ProposerSlashing(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Operations_SyncCommittee(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Operations_VoluntaryExit(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package random
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/sanity"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/sanity"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Random(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package rewards
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/rewards"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/rewards"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Rewards(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package sanity
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/sanity"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/sanity"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Sanity_Blocks(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package sanity
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/sanity"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/sanity"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_Sanity_Slots(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package ssz_static
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/altair/ssz_static"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/altair/ssz_static"
|
||||
)
|
||||
|
||||
func TestMainnet_Altair_SSZStatic(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_EffectiveBalanceUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_Eth1DataReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_HistoricalRootsUpdate(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_InactivityUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_JustificationAndFinalization(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_ParticipationFlag(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_RandaoMixesReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_ResetRegistryUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_RewardsAndPenalties(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_SlashingsReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_EpochProcessing_Slashings(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package finality
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/finality"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/finality"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Finality(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package fork_helper
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/fork"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/fork"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_UpgradeToBellatrix(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package fork_transition
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/fork"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/fork"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Transition(t *testing.T) {
|
||||
|
||||
@@ -3,8 +3,8 @@ package forkchoice
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/runtime/version"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/common/forkchoice"
|
||||
"github.com/prysmaticlabs/prysm/v4/runtime/version"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/common/forkchoice"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Forkchoice(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Operations_Attestation(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Operations_AttesterSlashing(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Operations_BlockHeader(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Operations_Deposit(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Operations_ProposerSlashing(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Operations_SyncCommittee(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Operations_VoluntaryExit(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package rewards
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/rewards"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/rewards"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Rewards(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package sanity
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/sanity"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/sanity"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Sanity_Blocks(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package sanity
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/sanity"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/sanity"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_Sanity_Slots(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package ssz_static
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/bellatrix/ssz_static"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/bellatrix/ssz_static"
|
||||
)
|
||||
|
||||
func TestMainnet_Bellatrix_SSZStatic(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_EffectiveBalanceUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_Eth1DataReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_HistoricalSummariesUpdate(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_InactivityUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_JustificationAndFinalization(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_ParticipationFlag(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_RandaoMixesReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_ResetRegistryUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_RewardsAndPenalties(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_SlashingsReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_EpochProcessing_Slashings(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package finality
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/finality"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/finality"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Finality(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package fork_helper
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/fork"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/fork"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_UpgradeToCapella(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package fork_transition
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/fork"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/fork"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Transition(t *testing.T) {
|
||||
|
||||
@@ -3,8 +3,8 @@ package forkchoice
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/runtime/version"
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/common/forkchoice"
|
||||
"github.com/prysmaticlabs/prysm/v4/runtime/version"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/common/forkchoice"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Forkchoice(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Operations_Attestation(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Operations_AttesterSlashing(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Operations_BlockHeader(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Operations_Deposit(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Operations_ProposerSlashing(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Operations_SyncCommittee(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Operations_VoluntaryExit(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package rewards
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/rewards"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/rewards"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Rewards(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package sanity
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/sanity"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/sanity"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Sanity_Blocks(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package sanity
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/sanity"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/sanity"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_Sanity_Slots(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package ssz_static
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/ssz_static"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/capella/ssz_static"
|
||||
)
|
||||
|
||||
func TestMainnet_Capella_SSZStatic(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_EffectiveBalanceUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/config/params"
|
||||
"github.com/prysmaticlabs/prysm/v4/config/params"
|
||||
)
|
||||
|
||||
func TestMain(m *testing.M) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_Eth1DataReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_HistoricalRootsUpdate(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_JustificationAndFinalization(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_ParticipationRecordUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_RandaoMixesReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_ResetRegistryUpdates(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_RewardsAndPenalties(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_SlashingsReset(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package epoch_processing
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/epoch_processing"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/epoch_processing"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_EpochProcessing_Slashings(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package finality
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/finality"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/finality"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_Finality(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_Operations_Attestation(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_Operations_AttesterSlashing(t *testing.T) {
|
||||
|
||||
@@ -3,7 +3,7 @@ package operations
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/phase0/operations"
|
||||
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/phase0/operations"
|
||||
)
|
||||
|
||||
func TestMainnet_Phase0_Operations_BlockHeader(t *testing.T) {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user