-
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
Support "dummy" relayer type #13583
Support "dummy" relayer type #13583
Conversation
d880f6b
to
ce90014
Compare
df7ac83
to
8156b85
Compare
8156b85
to
30e9314
Compare
30e9314
to
94b4dea
Compare
94b4dea
to
bdfe261
Compare
bdfe261
to
b1f2052
Compare
b1f2052
to
84a7e74
Compare
84a7e74
to
287284f
Compare
4a7ea78
to
02cba36
Compare
core/services/relay/relay.go
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.
Does this set still need to be updated? The unmarshaller doesn't require the value to be in this set anymore.
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.
Yeah apparently so, there was a test failing if I didn't add this
@@ -895,9 +895,6 @@ func (d *Delegate) newServicesLLO( | |||
if err != nil { | |||
return nil, ErrJobSpecNoRelayer{Err: err, PluginName: "streams"} | |||
} | |||
if rid.Network != relay.NetworkEVM { |
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 to double-check, you don't need this log anymore?
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 was a check, not a log if I'm not mistaken, and there isn't really any reason for it to be here. LLO should support any relayer type.
This allows testing of plugins without needing a real connection to any chain.
Co-authored-by: Jordan Krage <[email protected]>
5c76938
to
92a5f35
Compare
Quality Gate passedIssues Measures |
This allows testing of plugins without needing a real connection to any chain.
Ticket: https://smartcontract-it.atlassian.net/browse/MERC-5574