-
Notifications
You must be signed in to change notification settings - Fork 442
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
Crop all print
from Tests and Sources.
#673
Crop all print
from Tests and Sources.
#673
Conversation
print
from Tests.print
from Tests and Sources.
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.
LGTM! 👌 You might wanna wait with merging before the previous PRs are merged. Otherwise fun rebases ahead. ;D
Yep, I'm not rushing with this one. |
68a75f5
@janndriessen Conflict was resolved. Re-approve required. |
@@ -124,6 +124,6 @@ | |||
// let userAddress = EthereumAddress("0xe22b8979739D724343bd002F9f432F5990879901")! | |||
// let tokenBalance = try await token.read("balanceOf", parameters: [userAddress] as [AnyObject])!.decodedData() | |||
// guard let bal = tokenBalance["0"] as? BigUInt else {return XCTFail()} | |||
// print(String(bal)) | |||
// ) | |||
// } | |||
// } |
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.
Maybe we should drop this file.
Worth taking a look at what is useful inside and if we don't already have similar tests that weren't using promises.
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.
The last thing before approval: please, go over all tests and replace the following ->
if case .notYetProcessed = receipt.status {
return
}
Must be replaced with
if case .notYetProcessed = receipt.status {
throw Web3Error.processingError(desc: "Transaction is not yet complete")
}
@JeneaVranceanu sure, I'm no rushing with this one, since it'll be merger after @pharms-eth PRs, which I think would be merged within several weeks or so. |
d4eb962
to
5e61fcc
Compare
Closes #639