Skip to content

Commit 0cdf88e

Browse files
Group upgrade packages (#818)
1 parent 8469c81 commit 0cdf88e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+58
-58
lines changed

consensus/dummy/consensus.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121
"github.com/ava-labs/coreth/utils"
2222
"github.com/ethereum/go-ethereum/common"
2323

24-
"github.com/ava-labs/coreth/plugin/evm/ap1"
25-
"github.com/ava-labs/coreth/plugin/evm/cortina"
2624
customheader "github.com/ava-labs/coreth/plugin/evm/header"
25+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap1"
26+
"github.com/ava-labs/coreth/plugin/evm/upgrade/cortina"
2727
)
2828

2929
var (

consensus/dummy/consensus_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"testing"
1010

1111
"github.com/ava-labs/coreth/core/types"
12-
"github.com/ava-labs/coreth/plugin/evm/ap4"
1312
"github.com/ava-labs/coreth/plugin/evm/header"
13+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap4"
1414
"github.com/ethereum/go-ethereum/common"
1515
)
1616

core/blockchain_log_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/ava-labs/coreth/core/types"
1515
"github.com/ava-labs/coreth/core/vm"
1616
"github.com/ava-labs/coreth/params"
17-
"github.com/ava-labs/coreth/plugin/evm/ap3"
17+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap3"
1818
"github.com/ethereum/go-ethereum/common"
1919
"github.com/ethereum/go-ethereum/crypto"
2020
"github.com/stretchr/testify/require"

core/blockchain_repair_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import (
3939
"github.com/ava-labs/coreth/core/types"
4040
"github.com/ava-labs/coreth/core/vm"
4141
"github.com/ava-labs/coreth/params"
42-
"github.com/ava-labs/coreth/plugin/evm/ap3"
42+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap3"
4343
"github.com/ava-labs/coreth/triedb"
4444
"github.com/ethereum/go-ethereum/common"
4545
"github.com/ethereum/go-ethereum/crypto"

core/blockchain_snapshot_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import (
4444
"github.com/ava-labs/coreth/core/types"
4545
"github.com/ava-labs/coreth/core/vm"
4646
"github.com/ava-labs/coreth/params"
47-
"github.com/ava-labs/coreth/plugin/evm/ap3"
47+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap3"
4848
"github.com/ethereum/go-ethereum/common"
4949
"github.com/ethereum/go-ethereum/ethdb"
5050
)

core/blockchain_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/ava-labs/coreth/core/vm"
1919
"github.com/ava-labs/coreth/eth/tracers/logger"
2020
"github.com/ava-labs/coreth/params"
21-
"github.com/ava-labs/coreth/plugin/evm/ap3"
21+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap3"
2222
"github.com/ethereum/go-ethereum/common"
2323
"github.com/ethereum/go-ethereum/crypto"
2424
"github.com/ethereum/go-ethereum/ethdb"

core/chain_makers.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ import (
3737
"github.com/ava-labs/coreth/core/types"
3838
"github.com/ava-labs/coreth/core/vm"
3939
"github.com/ava-labs/coreth/params"
40-
"github.com/ava-labs/coreth/plugin/evm/ap1"
41-
"github.com/ava-labs/coreth/plugin/evm/cortina"
4240
"github.com/ava-labs/coreth/plugin/evm/header"
41+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap1"
42+
"github.com/ava-labs/coreth/plugin/evm/upgrade/cortina"
4343
"github.com/ava-labs/coreth/triedb"
4444
"github.com/ethereum/go-ethereum/common"
4545
"github.com/ethereum/go-ethereum/ethdb"

core/genesis.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"github.com/ava-labs/coreth/core/state"
3838
"github.com/ava-labs/coreth/core/types"
3939
"github.com/ava-labs/coreth/params"
40-
"github.com/ava-labs/coreth/plugin/evm/ap3"
40+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap3"
4141
"github.com/ava-labs/coreth/trie"
4242
"github.com/ava-labs/coreth/triedb"
4343
"github.com/ava-labs/coreth/triedb/pathdb"

core/genesis_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
"github.com/ava-labs/coreth/core/types"
3939
"github.com/ava-labs/coreth/core/vm"
4040
"github.com/ava-labs/coreth/params"
41-
"github.com/ava-labs/coreth/plugin/evm/ap3"
41+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap3"
4242
"github.com/ava-labs/coreth/precompile/contracts/warp"
4343
"github.com/ava-labs/coreth/trie"
4444
"github.com/ava-labs/coreth/triedb"

core/headerchain_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
"github.com/ava-labs/coreth/core/types"
3939
"github.com/ava-labs/coreth/core/vm"
4040
"github.com/ava-labs/coreth/params"
41-
"github.com/ava-labs/coreth/plugin/evm/ap3"
41+
"github.com/ava-labs/coreth/plugin/evm/upgrade/ap3"
4242
"github.com/ethereum/go-ethereum/common"
4343
)
4444

0 commit comments

Comments
 (0)