fix(eos): fix block submission for v2 EOS nodes following the spring hardfork #96
rust.yml
on: pull_request
build_and_test
24m 51s
check_formatting
2m 43s
check_clippy
7m 12s
run_shell_tests
25m 45s
Annotations
9 errors and 36 warnings
unused return value of `std::hash::Hasher::finish` that must be used:
common/eos/src/eos_hash.rs#L129
error: unused return value of `std::hash::Hasher::finish` that must be used
--> common/eos/src/eos_hash.rs:129:17
|
129 | state.finish();
| ^^^^^^^^^^^^^^
...
164 | impl_hash!(H520, 65);
| -------------------- in this macro invocation
|
= note: this error originates in the macro `impl_hash` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use `let _ = ...` to ignore the resulting value
|
129 | let _ = state.finish();
| +++++++
|
unused return value of `std::hash::Hasher::finish` that must be used:
common/eos/src/eos_hash.rs#L129
error: unused return value of `std::hash::Hasher::finish` that must be used
--> common/eos/src/eos_hash.rs:129:17
|
129 | state.finish();
| ^^^^^^^^^^^^^^
...
163 | impl_hash!(H512, 64);
| -------------------- in this macro invocation
|
= note: this error originates in the macro `impl_hash` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use `let _ = ...` to ignore the resulting value
|
129 | let _ = state.finish();
| +++++++
|
unused return value of `std::hash::Hasher::finish` that must be used:
common/eos/src/eos_hash.rs#L129
error: unused return value of `std::hash::Hasher::finish` that must be used
--> common/eos/src/eos_hash.rs:129:17
|
129 | state.finish();
| ^^^^^^^^^^^^^^
...
162 | impl_hash!(H264, 33);
| -------------------- in this macro invocation
|
= note: this error originates in the macro `impl_hash` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use `let _ = ...` to ignore the resulting value
|
129 | let _ = state.finish();
| +++++++
|
unused return value of `std::hash::Hasher::finish` that must be used:
common/eos/src/eos_hash.rs#L129
error: unused return value of `std::hash::Hasher::finish` that must be used
--> common/eos/src/eos_hash.rs:129:17
|
129 | state.finish();
| ^^^^^^^^^^^^^^
...
161 | impl_hash!(H256, 32);
| -------------------- in this macro invocation
|
= note: this error originates in the macro `impl_hash` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use `let _ = ...` to ignore the resulting value
|
129 | let _ = state.finish();
| +++++++
|
unused return value of `std::hash::Hasher::finish` that must be used:
common/eos/src/eos_hash.rs#L129
error: unused return value of `std::hash::Hasher::finish` that must be used
--> common/eos/src/eos_hash.rs:129:17
|
129 | state.finish();
| ^^^^^^^^^^^^^^
...
160 | impl_hash!(H160, 20);
| -------------------- in this macro invocation
|
= note: this error originates in the macro `impl_hash` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use `let _ = ...` to ignore the resulting value
|
129 | let _ = state.finish();
| +++++++
|
unused return value of `std::hash::Hasher::finish` that must be used:
common/eos/src/eos_hash.rs#L129
error: unused return value of `std::hash::Hasher::finish` that must be used
--> common/eos/src/eos_hash.rs:129:17
|
129 | state.finish();
| ^^^^^^^^^^^^^^
...
159 | impl_hash!(H96, 12);
| ------------------- in this macro invocation
|
= note: this error originates in the macro `impl_hash` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use `let _ = ...` to ignore the resulting value
|
129 | let _ = state.finish();
| +++++++
|
unused return value of `std::hash::Hasher::finish` that must be used:
common/eos/src/eos_hash.rs#L129
error: unused return value of `std::hash::Hasher::finish` that must be used
--> common/eos/src/eos_hash.rs:129:17
|
129 | state.finish();
| ^^^^^^^^^^^^^^
...
158 | impl_hash!(H48, 6);
| ------------------ in this macro invocation
|
= note: this error originates in the macro `impl_hash` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use `let _ = ...` to ignore the resulting value
|
129 | let _ = state.finish();
| +++++++
|
unused return value of `std::hash::Hasher::finish` that must be used:
common/eos/src/eos_hash.rs#L129
error: unused return value of `std::hash::Hasher::finish` that must be used
--> common/eos/src/eos_hash.rs:129:17
|
129 | state.finish();
| ^^^^^^^^^^^^^^
...
157 | impl_hash!(H32, 4);
| ------------------ in this macro invocation
|
= note: `-D unused-must-use` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(unused_must_use)]`
= note: this error originates in the macro `impl_hash` (in Nightly builds, run with -Z macro-backtrace for more info)
help: use `let _ = ...` to ignore the resulting value
|
129 | let _ = state.finish();
| +++++++
|
check_clippy
Clippy had exited with the 101 exit code
|
check_formatting
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
check_formatting
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
check_formatting
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_formatting
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_formatting
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_formatting
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_formatting
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_formatting
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_formatting
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, 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/
|
check_clippy
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
check_clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_clippy
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_clippy
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
check_clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build_and_test
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
build_and_test
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
build_and_test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build_and_test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build_and_test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build_and_test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build_and_test
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build_and_test
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
build_and_test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
run_shell_tests
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
run_shell_tests
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
run_shell_tests
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
run_shell_tests
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
run_shell_tests
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
run_shell_tests
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
run_shell_tests
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
run_shell_tests
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
run_shell_tests
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|