-
Notifications
You must be signed in to change notification settings - Fork 63
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
Add utility functions and tests to signed integers #68
base: master
Are you sure you want to change the base?
Changes from 2 commits
c43bc50
32a46a9
070d38f
a9d4fa6
83a590c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -16,6 +16,8 @@ mod success { | |||||||||||
|
||||||||||||
let instance = Testi128::new(wallet, path_to_bin); | ||||||||||||
|
||||||||||||
let _result = instance.main().call().await; | ||||||||||||
let params = TxParameters::new(Some(1), Some(10000000), None); | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same suggestion for other instances of this, for readability purposes.
Suggested change
|
||||||||||||
let _result = instance.main().tx_params(params).call().await; | ||||||||||||
assert_eq!(_result.is_err(), false); | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The underscore is used for unused variables.
Suggested change
|
||||||||||||
} | ||||||||||||
} |
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.
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.
🫡