Skip to content

Commit

Permalink
Package rename
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog committed Oct 4, 2024
1 parent b324d3a commit 45d30f6
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion cmd/enclave/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
oplog "github.com/ethereum-optimism/optimism/op-service/log"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/rpc"
"github.com/mdehoog/op-nitro/enclave"
"github.com/mdehoog/op-enclave/enclave"
"github.com/mdlayher/vsock"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/mdehoog/op-nitro
module github.com/mdehoog/op-enclave

go 1.22.1

Expand Down
2 changes: 1 addition & 1 deletion op-batcher/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"github.com/ethereum-optimism/optimism/op-batcher/flags"
"github.com/mdehoog/op-nitro/op-batcher/batcher"
"github.com/mdehoog/op-enclave/op-batcher/batcher"
"github.com/urfave/cli/v2"

opservice "github.com/ethereum-optimism/optimism/op-service"
Expand Down
4 changes: 2 additions & 2 deletions op-da/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"

"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"
"github.com/mdehoog/op-nitro/op-da/da"
"github.com/mdehoog/op-nitro/op-da/flags"
"github.com/mdehoog/op-enclave/op-da/da"
"github.com/mdehoog/op-enclave/op-da/flags"

"github.com/urfave/cli/v2"

Expand Down
2 changes: 1 addition & 1 deletion op-da/da/config.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package da

import (
"github.com/mdehoog/op-nitro/op-da/flags"
"github.com/mdehoog/op-enclave/op-da/flags"
"github.com/urfave/cli/v2"

oplog "github.com/ethereum-optimism/optimism/op-service/log"
Expand Down
2 changes: 1 addition & 1 deletion op-da/da/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/ethereum-optimism/optimism/op-service/cliapp"
oplog "github.com/ethereum-optimism/optimism/op-service/log"
"github.com/ethereum/go-ethereum/log"
"github.com/mdehoog/op-nitro/op-da/flags"
"github.com/mdehoog/op-enclave/op-da/flags"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions op-proposer/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/ethereum-optimism/optimism/op-service/ctxinterrupt"
oplog "github.com/ethereum-optimism/optimism/op-service/log"
"github.com/ethereum/go-ethereum/log"
"github.com/mdehoog/op-nitro/op-proposer/flags"
"github.com/mdehoog/op-nitro/op-proposer/proposer"
"github.com/mdehoog/op-enclave/op-proposer/flags"
"github.com/mdehoog/op-enclave/op-proposer/proposer"
"github.com/urfave/cli/v2"
)

Expand Down
2 changes: 1 addition & 1 deletion op-proposer/proposer/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package proposer

import (
"github.com/ethereum-optimism/optimism/op-proposer/proposer"
"github.com/mdehoog/op-nitro/op-proposer/flags"
"github.com/mdehoog/op-enclave/op-proposer/flags"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions op-proposer/proposer/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/log"
"github.com/mdehoog/op-nitro/bindings"
"github.com/mdehoog/op-nitro/enclave"
"github.com/mdehoog/op-enclave/bindings"
"github.com/mdehoog/op-enclave/enclave"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion op-proposer/proposer/l2_output_submitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
opservice "github.com/ethereum-optimism/optimism/op-service"
"github.com/ethereum-optimism/optimism/op-service/cliapp"
oplog "github.com/ethereum-optimism/optimism/op-service/log"
thisflags "github.com/mdehoog/op-nitro/op-proposer/flags"
thisflags "github.com/mdehoog/op-enclave/op-proposer/flags"
"github.com/urfave/cli/v2"
)

Expand Down
2 changes: 1 addition & 1 deletion op-proposer/proposer/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/core/types"
"github.com/hashicorp/go-multierror"
"github.com/mdehoog/op-nitro/enclave"
"github.com/mdehoog/op-enclave/enclave"
)

type Prover struct {
Expand Down
4 changes: 2 additions & 2 deletions op-proposer/proposer/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
oprpc "github.com/ethereum-optimism/optimism/op-service/rpc"
"github.com/ethereum-optimism/optimism/op-service/txmgr"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/mdehoog/op-nitro/enclave"
"github.com/mdehoog/op-nitro/op-proposer/metrics"
"github.com/mdehoog/op-enclave/enclave"
"github.com/mdehoog/op-enclave/op-proposer/metrics"

"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/log"
Expand Down

0 comments on commit 45d30f6

Please sign in to comment.