added method to form message using chunks #662
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
master.yml
on: pull_request
Miscellaneous checks
4m 22s
Anchor Test
9m 41s
Rust tests
4m 2s
Annotations
2 errors and 1 warning
methods called `new` usually return `Self`:
solana/solana-ibc/programs/solana-ibc/src/storage.rs#L395
error: methods called `new` usually return `Self`
--> solana/solana-ibc/programs/solana-ibc/src/storage.rs:395:5
|
395 | / pub fn new(&mut self, total_len: usize) {
396 | | let msg = vec![0; total_len + 4];
397 | | self.msg = msg;
398 | | let total_len_in_bytes = (total_len as u32).to_be_bytes();
399 | | self.copy_into(0, &total_len_in_bytes);
400 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_ret_no_self
= note: `-D clippy::new-ret-no-self` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::new_ret_no_self)]`
|
Miscellaneous checks
Clippy had exited with the 101 exit code
|
Miscellaneous checks
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|