feat(platform)!: state transition fee increase and priorities #1493
Annotations
11 warnings
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: mozilla-actions/[email protected], strophy/actions-cache@opendal-update. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dpp/src/identity/mod.rs#L21
warning: private item shadows public glob re-export
--> packages/rs-dpp/src/identity/mod.rs:21:1
|
21 | mod fields;
| ^^^^^^^^^^^
|
note: the name `fields` in the type namespace is supposed to be publicly re-exported here
--> packages/rs-dpp/src/identity/mod.rs:6:9
|
6 | pub use identity_public_key::*;
| ^^^^^^^^^^^^^^^^^^^^^^
note: but the private item here shadows it
--> packages/rs-dpp/src/identity/mod.rs:21:1
|
21 | mod fields;
| ^^^^^^^^^^^
= note: `#[warn(hidden_glob_reexports)]` on by default
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dpp/src/identity/mod.rs#L27
warning: private item shadows public glob re-export
--> packages/rs-dpp/src/identity/mod.rs:27:1
|
27 | mod methods;
| ^^^^^^^^^^^^
|
note: the name `methods` in the type namespace is supposed to be publicly re-exported here
--> packages/rs-dpp/src/identity/mod.rs:6:9
|
6 | pub use identity_public_key::*;
| ^^^^^^^^^^^^^^^^^^^^^^
note: but the private item here shadows it
--> packages/rs-dpp/src/identity/mod.rs:27:1
|
27 | mod methods;
| ^^^^^^^^^^^^
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dpp/src/identity/mod.rs#L30
warning: private item shadows public glob re-export
--> packages/rs-dpp/src/identity/mod.rs:30:1
|
30 | mod v0;
| ^^^^^^^
|
note: the name `v0` in the type namespace is supposed to be publicly re-exported here
--> packages/rs-dpp/src/identity/mod.rs:6:9
|
6 | pub use identity_public_key::*;
| ^^^^^^^^^^^^^^^^^^^^^^
note: but the private item here shadows it
--> packages/rs-dpp/src/identity/mod.rs:30:1
|
30 | mod v0;
| ^^^^^^^
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dpp/src/state_transition/state_transitions/document/documents_batch_transition/document_transition/document_delete_transition/mod.rs#L3
warning: private item shadows public glob re-export
--> packages/rs-dpp/src/state_transition/state_transitions/document/documents_batch_transition/document_transition/document_delete_transition/mod.rs:3:1
|
3 | mod v0_methods;
| ^^^^^^^^^^^^^^^
|
note: the name `v0_methods` in the type namespace is supposed to be publicly re-exported here
--> packages/rs-dpp/src/state_transition/state_transitions/document/documents_batch_transition/document_transition/document_delete_transition/mod.rs:9:9
|
9 | pub use v0::*;
| ^^^^^
note: but the private item here shadows it
--> packages/rs-dpp/src/state_transition/state_transitions/document/documents_batch_transition/document_transition/document_delete_transition/mod.rs:3:1
|
3 | mod v0_methods;
| ^^^^^^^^^^^^^^^
|
Run clechasseur/rs-clippy-check@v3:
packages/rs-dpp/src/state_transition/state_transitions/document/documents_batch_transition/document_transition/document_replace_transition/mod.rs#L3
warning: private item shadows public glob re-export
--> packages/rs-dpp/src/state_transition/state_transitions/document/documents_batch_transition/document_transition/document_replace_transition/mod.rs:3:1
|
3 | mod v0_methods;
| ^^^^^^^^^^^^^^^
|
note: the name `v0_methods` in the type namespace is supposed to be publicly re-exported here
--> packages/rs-dpp/src/state_transition/state_transitions/document/documents_batch_transition/document_transition/document_replace_transition/mod.rs:13:9
|
13 | pub use v0::*;
| ^^^^^
note: but the private item here shadows it
--> packages/rs-dpp/src/state_transition/state_transitions/document/documents_batch_transition/document_transition/document_replace_transition/mod.rs:3:1
|
3 | mod v0_methods;
| ^^^^^^^^^^^^^^^
|
Run clechasseur/rs-clippy-check@v3:
packages/wasm-dpp/src/data_contract/data_contract_facade.rs#L11
warning: unused import: `crate::entropy_generator::ExternalEntropyGenerator`
--> packages/wasm-dpp/src/data_contract/data_contract_facade.rs:11:5
|
11 | use crate::entropy_generator::ExternalEntropyGenerator;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
|
Run clechasseur/rs-clippy-check@v3:
packages/wasm-dpp/src/data_contract_factory/data_contract_factory.rs#L7
warning: unused import: `crate::entropy_generator::ExternalEntropyGenerator`
--> packages/wasm-dpp/src/data_contract_factory/data_contract_factory.rs:7:5
|
7 | use crate::entropy_generator::ExternalEntropyGenerator;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
Run clechasseur/rs-clippy-check@v3:
packages/wasm-dpp/src/lib.rs#L22
warning: private item shadows public glob re-export
--> packages/wasm-dpp/src/lib.rs:22:1
|
22 | mod state_transition;
| ^^^^^^^^^^^^^^^^^^^^^
|
note: the name `state_transition` in the type namespace is supposed to be publicly re-exported here
--> packages/wasm-dpp/src/lib.rs:7:9
|
7 | pub use document::*;
| ^^^^^^^^^^^
note: but the private item here shadows it
--> packages/wasm-dpp/src/lib.rs:22:1
|
22 | mod state_transition;
| ^^^^^^^^^^^^^^^^^^^^^
= note: `#[warn(hidden_glob_reexports)]` on by default
|
Run clechasseur/rs-clippy-check@v3:
packages/wasm-dpp/src/document/extended_document.rs#L22
warning: use of deprecated enum `document::BinaryType`: This function is marked as unused.
--> packages/wasm-dpp/src/document/extended_document.rs:22:22
|
22 | use crate::document::BinaryType;
| ^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
Run clechasseur/rs-clippy-check@v3:
packages/wasm-dpp/src/identity/state_transition/identity_public_key_transitions.rs#L22
warning: field `skip_signature` is never read
--> packages/wasm-dpp/src/identity/state_transition/identity_public_key_transitions.rs:22:9
|
21 | struct ToObjectOptions {
| --------------- field in this struct
22 | pub skip_signature: Option<bool>,
| ^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
|
The logs for this run have expired and are no longer available.
Loading