Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[antithesis] Enable reuse of banff e2e test for antithesis testing #3554

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
fixup: Address lint failures
maru-ava committed Dec 14, 2024
commit ad11833a5f220fc632992c280726c44729ac08b2
8 changes: 4 additions & 4 deletions wallet/subnet/primary/common/options.go
Original file line number Diff line number Diff line change
@@ -8,22 +8,22 @@ import (
"math/big"
"time"

"go.uber.org/zap"

"github.com/ava-labs/avalanchego/ids"
"github.com/ava-labs/avalanchego/utils/logging"
"github.com/ava-labs/avalanchego/utils/set"
"github.com/ava-labs/avalanchego/vms/secp256k1fx"

"go.uber.org/zap"

ethcommon "github.com/ethereum/go-ethereum/common"
)

type PrimaryChainAlias string

const (
PChainAlias PrimaryChainAlias = "P"
XChainAlias = "X"
CChainAlias = "C"
XChainAlias PrimaryChainAlias = "X"
CChainAlias PrimaryChainAlias = "C"

defaultPollFrequency = 100 * time.Millisecond
)