-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
core: cosmos & starknet LOOPP mode only #16039
Conversation
I see you updated files related to
|
TOMLConfigs RawConfigs | ||
func (r *RelayerFactory) NewCosmos(ks keystore.Cosmos, chainCfgs RawConfigs) (map[types.RelayID]loop.Relayer, error) { | ||
loopKs := &keystore.CosmosLoopKeystore{Cosmos: ks} | ||
return r.NewLOOPRelayer("Aptos", relay.NetworkCosmos, env.CosmosPlugin, loopKs, chainCfgs) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return r.NewLOOPRelayer("Aptos", relay.NetworkCosmos, env.CosmosPlugin, loopKs, chainCfgs) | |
return r.NewLOOPRelayer("Cosmos", relay.NetworkCosmos, env.CosmosPlugin, loopKs, chainCfgs) |
5717ebc
to
2637ef0
Compare
63472c0
to
763c44a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't actually work since they aren't imported anymore.
plugins/chainlink.Dockerfile
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't work anymore since they aren't imported (and we can't just go install
since there are replaces)
763c44a
to
18894f3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will have to be expanded to support the go mod download approach
18894f3
to
7f68121
Compare
GNUmakefile
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
go mod download
works well in cases where pure go install
does not.
7f68121
to
c395840
Compare
@@ -0,0 +1,34 @@ | |||
//go:build integration |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just moving these to separate files in order to gate with build tags
Flakeguard SummaryRan new or updated tests between View Flaky Detector Details | Compare Changes Found Flaky Tests ❌2 Results
ArtifactsFor detailed logs of the failed tests, please refer to the artifact failed-test-results-with-logs.json. |
2e24716
to
5de3ed4
Compare
OK now the tests should pass. There were two subtle nil bugs, one in the test boilerplate and one in cosmos: smartcontractkit/chainlink-cosmos#430 |
5de3ed4
to
5c23664
Compare
|
https://smartcontract-it.atlassian.net/browse/CRE-267
This sheds most of the imports, except for some minimal keystore support.
Requires