-
Notifications
You must be signed in to change notification settings - Fork 169
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
Make use of Result on completion #221
Conversation
Test "testEthSendRawTransaction" fails. My changes don't affect that test. It is failing even on the master. Please take a look on it. Error It seems that the test {Update} |
let resolver = try await getResolver( | ||
for: address, | ||
registryAddress: registryAddress, | ||
mode: mode | ||
) | ||
let resolver = try await getResolver(for: address, | ||
registryAddress: registryAddress, | ||
mode: mode) |
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.
are you running formatter on your side? Because it's polluting all meaningful changes for reviewing
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.
Yes its formatter, wasn't intended though.
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.
@DarthMike I reverted all the unrelated formatted changes.
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.
great 👍
Its more convenience to use
Result
to reduce the optionals.Resolves #219 .
That PR will open the road for the WebSocket integration #182
All the deprecated methods have been putted in extensions with
// MARK: - Deprecated
for easy removal