-
Notifications
You must be signed in to change notification settings - Fork 40
fix: contract gas input devex #714
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
fix: contract gas input devex #714
Conversation
62a149c to
222a07c
Compare
Codecov Report❌ Patch coverage is
@@ Coverage Diff @@
## daan/fix-contract_interaction #714 +/- ##
=================================================================
+ Coverage 76.96% 77.00% +0.04%
=================================================================
Files 111 111
Lines 25360 25402 +42
Branches 25360 25402 +42
=================================================================
+ Hits 19519 19562 +43
- Misses 3775 3776 +1
+ Partials 2066 2064 -2
... and 1 file with indirect coverage changes 🚀 New features to boost your workflow:
|
| /// call. | ||
| #[arg(name = "gas", short, long)] | ||
| /// DEPRECATED use `--manual-weight <REF_TIME> <PROOF_SIZE>` instead, removed in v0.13.0. | ||
| #[arg(name = "gas", short, long, conflicts_with = "manual_weight", requires = "proof_size")] |
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 one (and the other deprecated ones) should be marked with #[deprecated].
* fix: chain & contract manual interaction * Update crates/pop-cli/src/commands/call/chain.rs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * refactor: resolve funct args * fix: contract gas input devex (#714) * refactor: manual weight * fix: docs and issue tommy * fix: ci * Update crates/pop-cli/src/commands/call/contract.rs * Update crates/pop-cli/src/commands/call/contract.rs * Update crates/pop-cli/src/commands/call/contract.rs * Update crates/pop-cli/src/commands/call/contract.rs * Update crates/pop-cli/src/commands/call/contract.rs * fix: ci * fix: deprecated * fix: tests deprecated error --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Closes #612