Skip to content

Commit

Permalink
chore(op-plasma-eigenda): Remove dead and unecessary code - fix cfg path
Browse files Browse the repository at this point in the history
  • Loading branch information
EthenNotEthan committed May 15, 2024
1 parent 9d94e80 commit e5a1f10
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ func createTestSuite(t *testing.T) (TestSuite, func()) {
}

kzgCfg := &kzg.KzgConfig{
G1Path: "operator-setup/resources/g1.point",
G2Path: "operator-setup/resources/g2.point",
G2PowerOf2Path: "operator-setup/resources/g2.point.powerOf2",
CacheDir: "operator-setup/resources/SRSTables",
G1Path: "../operator-setup/resources/g1.point",
G2Path: "resources/g2.point",
G2PowerOf2Path: "../operator-setup/resources/g2.point.powerOf2",
CacheDir: "../operator-setup/resources/SRSTables",
SRSOrder: 3000,
SRSNumberToLoad: 3000,
NumWorker: uint64(runtime.GOMAXPROCS(0)),
Expand Down Expand Up @@ -103,6 +103,7 @@ func TestE2EPutGetLogicForEigenDAStore(t *testing.T) {
daClient := op_plasma.NewDAClient(fmt.Sprintf("%s://%s:%d", transport, testSvrHost, testSvrPort), false)
t.Log("Waiting for client to establish connection with plasma server...")
// wait for server to come online after starting
time.Sleep(5 * time.Second)

// 1 - write arbitrary data to test plasma server

Expand Down

0 comments on commit e5a1f10

Please sign in to comment.