Skip to content

Commit

Permalink
fix: fmt and Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoieh committed Apr 25, 2024
1 parent 7165ef0 commit 99c7c57
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions op-batcher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ COPY ./op-bindings /app/op-bindings
COPY ./op-node /app/op-node
COPY ./op-service /app/op-service
COPY ./op-aws-sdk /app/op-aws-sdk
COPY ./op-plasma /app/op-plasma
COPY ./go.mod /app/go.mod
COPY ./go.sum /app/go.sum

Expand Down
2 changes: 2 additions & 0 deletions op-bootnode/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ COPY ./op-bootnode /app/op-bootnode
COPY ./op-bindings /app/op-bindings
COPY ./op-node /app/op-node
COPY ./op-service /app/op-service
COPY ./op-plasma /app/op-plasma
COPY ./op-conductor /app/op-conductor
COPY ./op-aws-sdk /app/op-aws-sdk
COPY ./go.mod /app/go.mod
COPY ./go.sum /app/go.sum
Expand Down
2 changes: 2 additions & 0 deletions op-node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ COPY ./op-node /app/op-node
COPY ./op-chain-ops /app/op-chain-ops
COPY ./op-service /app/op-service
COPY ./op-bindings /app/op-bindings
COPY ./op-plasma /app/op-plasma
COPY ./op-conductor /app/op-conductor
COPY ./op-aws-sdk /app/op-aws-sdk
COPY ./go.mod /app/go.mod
COPY ./go.sum /app/go.sum
Expand Down
1 change: 1 addition & 0 deletions op-proposer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ COPY ./op-proposer /app/op-proposer
COPY ./op-bindings /app/op-bindings
COPY ./op-node /app/op-node
COPY ./op-service /app/op-service
COPY ./op-plasma /app/op-plasma
COPY ./op-aws-sdk /app/op-aws-sdk
COPY ./go.mod /app/go.mod
COPY ./go.sum /app/go.sum
Expand Down
6 changes: 3 additions & 3 deletions op-service/eth/blobs_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ type VersionInformation struct {
}

type BSCBlobTxSidecar struct {
Blobs []Blob `json:"blobs"` // Blobs needed by the blob pool
Commitments []Bytes48 `json:"commitments"` // Commitments needed by the blob pool
Proofs []Bytes48 `json:"proofs"` // Proofs needed by the blob pool
Blobs []Blob `json:"blobs"`
Commitments []Bytes48 `json:"commitments"`
Proofs []Bytes48 `json:"proofs"`
}

type BSCBlobSidecar struct {
Expand Down
3 changes: 0 additions & 3 deletions op-service/sources/l1_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,6 @@ func validateBlobSidecars (blobSidecars eth.BSCBlobSidecars, ref eth.L1BlockRef)
return blobsMap, nil
}




func (s *L1Client) Close() {
close(s.done)
s.EthClient.Close()
Expand Down

0 comments on commit 99c7c57

Please sign in to comment.