Skip to content
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

integration of managedMultiTransferESDTNFTExecuteByUser #1711

Draft
wants to merge 4 commits into
base: feat/vm-1.7.next1
Choose a base branch
from

multi transfer esdt nft execute by user moved to send api and impl

a0af630
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

integration of managedMultiTransferESDTNFTExecuteByUser #1711

multi transfer esdt nft execute by user moved to send api and impl
a0af630
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy failed Jul 25, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (1)

vm/src/vm_hooks/vh_impl/vh_debug_api.rs|238 col 53| error[E0308]: mismatched types
--> vm/src/vm_hooks/vh_impl/vh_debug_api.rs:238:53
|
238 | self.0.result_lock().all_calls.push(transfer_by_user_data);
| ---- ^^^^^^^^^^^^^^^^^^^^^ expected AsyncCallTxData, found TranferByUserData
| |
| arguments to this method are incorrect
|
note: method defined here
--> /rustc/051478957371ee0084a7c0913941d2a8c4757bb9/library/alloc/src/vec/mod.rs:1993:12

Filtered Findings (1)

framework/base/src/types/managed/wrapped/managed_vec_item.rs|34 col 9| warning: doc list item missing indentation
--> framework/base/src/types/managed/wrapped/managed_vec_item.rs:34:9
|
34 | /// TODO: wrap other types in readonly wrapper.
| ^
|
= help: if this is supposed to be its own paragraph, add a blank line
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
= note: #[warn(clippy::doc_lazy_continuation)] on by default
help: indent this line
|
34 | /// TODO: wrap other types in readonly wrapper.
| ++

Annotations

Check failure on line 238 in vm/src/vm_hooks/vh_impl/vh_debug_api.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] vm/src/vm_hooks/vh_impl/vh_debug_api.rs#L238

error[E0308]: mismatched types
   --> vm/src/vm_hooks/vh_impl/vh_debug_api.rs:238:53
    |
238 |                 self.0.result_lock().all_calls.push(transfer_by_user_data);
    |                                                ---- ^^^^^^^^^^^^^^^^^^^^^ expected `AsyncCallTxData`, found `TranferByUserData`
    |                                                |
    |                                                arguments to this method are incorrect
    |
note: method defined here
   --> /rustc/051478957371ee0084a7c0913941d2a8c4757bb9/library/alloc/src/vec/mod.rs:1993:12
Raw output
vm/src/vm_hooks/vh_impl/vh_debug_api.rs:238:53:e:error[E0308]: mismatched types
   --> vm/src/vm_hooks/vh_impl/vh_debug_api.rs:238:53
    |
238 |                 self.0.result_lock().all_calls.push(transfer_by_user_data);
    |                                                ---- ^^^^^^^^^^^^^^^^^^^^^ expected `AsyncCallTxData`, found `TranferByUserData`
    |                                                |
    |                                                arguments to this method are incorrect
    |
note: method defined here
   --> /rustc/051478957371ee0084a7c0913941d2a8c4757bb9/library/alloc/src/vec/mod.rs:1993:12


__END__