mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05:00
Register EnableStateDiff and StateDiffExponents flags with the beacon-chain CLI, and add an e2e test that runs with the state-diff feature enabled. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
403 B
Go
17 lines
403 B
Go
package endtoend
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/OffchainLabs/prysm/v7/config/params"
|
|
"github.com/OffchainLabs/prysm/v7/runtime/version"
|
|
"github.com/OffchainLabs/prysm/v7/testing/endtoend/types"
|
|
)
|
|
|
|
func TestEndToEnd_MinimalConfig_WithStateDiff(t *testing.T) {
|
|
r := e2eMinimal(t, types.InitForkCfg(version.Bellatrix, version.Electra, params.E2ETestConfig()),
|
|
types.WithStateDiff(),
|
|
)
|
|
r.run()
|
|
}
|