Skip to content

feat(erc721): implement erc-721 token standard #97

feat(erc721): implement erc-721 token standard

feat(erc721): implement erc-721 token standard #97

GitHub Actions / clippy failed Apr 5, 2024 in 1s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (2)

contracts/src/arithmetic.rs|4 col 18| warning: trait AddAssignUnchecked is never used
--> contracts/src/arithmetic.rs:4:18
|
4 | pub(crate) trait AddAssignUnchecked {
| ^^^^^^^^^^^^^^^^^^
|
= note: #[warn(dead_code)] on by default
contracts/src/arithmetic.rs|15 col 18| warning: trait SubAssignUnchecked is never used
--> contracts/src/arithmetic.rs:15:18
|
15 | pub(crate) trait SubAssignUnchecked {
| ^^^^^^^^^^^^^^^^^^

Filtered Findings (0)

Annotations

Check warning on line 4 in contracts/src/arithmetic.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] contracts/src/arithmetic.rs#L4

warning: trait `AddAssignUnchecked` is never used
 --> contracts/src/arithmetic.rs:4:18
  |
4 | pub(crate) trait AddAssignUnchecked<T> {
  |                  ^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(dead_code)]` on by default
Raw output
contracts/src/arithmetic.rs:4:18:w:warning: trait `AddAssignUnchecked` is never used
 --> contracts/src/arithmetic.rs:4:18
  |
4 | pub(crate) trait AddAssignUnchecked<T> {
  |                  ^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(dead_code)]` on by default


__END__

Check warning on line 15 in contracts/src/arithmetic.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] contracts/src/arithmetic.rs#L15

warning: trait `SubAssignUnchecked` is never used
  --> contracts/src/arithmetic.rs:15:18
   |
15 | pub(crate) trait SubAssignUnchecked<T> {
   |                  ^^^^^^^^^^^^^^^^^^
Raw output
contracts/src/arithmetic.rs:15:18:w:warning: trait `SubAssignUnchecked` is never used
  --> contracts/src/arithmetic.rs:15:18
   |
15 | pub(crate) trait SubAssignUnchecked<T> {
   |                  ^^^^^^^^^^^^^^^^^^


__END__