Abstract over the various data types needed by the consensus engine #58
Annotations
2 errors and 1 warning
consensus/src/executor.rs#L355
error[E0599]: no method named `address` found for struct `malachite_common::test::Validator` in the current scope
--> consensus/src/executor.rs:355:32
|
355 | v2.clone().address(),
| ^^^^^^^ field, not a method
|
= help: items from traits can only be used if the trait is in scope
help: remove the arguments
|
355 - v2.clone().address(),
355 + v2.clone().address,
|
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
|
216 + use malachite_common::Validator;
|
|
consensus/src/executor.rs#L378
error[E0599]: no method named `address` found for struct `malachite_common::test::Validator` in the current scope
--> consensus/src/executor.rs:378:32
|
378 | v2.clone().address(),
| ^^^^^^^ field, not a method
|
= help: items from traits can only be used if the trait is in scope
help: remove the arguments
|
378 - v2.clone().address(),
378 + v2.clone().address,
|
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
|
216 + use malachite_common::Validator;
|
|
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
The logs for this run have expired and are no longer available.
Loading