Skip to content

Commit

Permalink
feat: OP Keccak commitment support - fix holesky test and remediate g…
Browse files Browse the repository at this point in the history
…osec false positives
  • Loading branch information
EthenNotEthan committed Jul 18, 2024
1 parent 08b2860 commit 6fdc5d7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ LDFLAGSSTRING +=-X main.Version=$(VERSION)
LDFLAGS := -ldflags "$(LDFLAGSSTRING)"

E2ETEST = INTEGRATION=true go test -timeout 1m -v ./e2e -parallel 4 -deploy-config ../.devnet/devnetL1.json
HOLESKYTEST = TESTNET=true go test -timeout 50m -v ./e2e -parallel 4 -deploy-config ../.devnet/devnetL1.json

.PHONY: eigenda-proxy
eigenda-proxy:
Expand Down Expand Up @@ -41,8 +42,10 @@ e2e-test: run-minio
$(E2ETEST); \
make stop-minio

holesky-test:
TESTNET=true go test -timeout 50m -v ./e2e -parallel 4 -deploy-config ../.devnet/devnetL1.json
holesky-test: run-minio
$(HOLESKYTEST); \
make stop-minio


.PHONY: lint
lint:
Expand Down
4 changes: 2 additions & 2 deletions server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const (
// S3 flags
S3BucketFlagName = "s3.bucket"
S3EndpointFlagName = "s3.endpoint"
S3AccessKeyIDFlagName = "s3.access-key-id"
S3AccessKeySecretFlagName = "s3.access-key-secret"
S3AccessKeyIDFlagName = "s3.access-key-id" // #nosec G101
S3AccessKeySecretFlagName = "s3.access-key-secret" // #nosec G101
)

const BytesPerSymbol = 31
Expand Down

0 comments on commit 6fdc5d7

Please sign in to comment.