Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions frc46_token/src/token/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::result_large_err)]
Copy link

Copilot AI May 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding an inline comment to explain why the clippy lint for large errors is being ignored, including a reference to any related issue for future tracking.

Copilot uses AI. Check for mistakes.

use std::ops::Neg;

use cid::Cid;
Expand Down
2 changes: 2 additions & 0 deletions testing/test_actors/actors/basic_token_actor/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::result_large_err)]
Copy link

Copilot AI May 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding an inline comment to explain why the clippy lint for large errors is being ignored, including a reference to any related issue for future tracking.

Copilot uses AI. Check for mistakes.

mod util;

use cid::Cid;
Expand Down
2 changes: 2 additions & 0 deletions testing/test_actors/actors/frc46_factory_token/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::result_large_err)]
Copy link

Copilot AI May 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding an inline comment to explain why the clippy lint for large errors is being ignored, including a reference to any related issue for future tracking.

Copilot uses AI. Check for mistakes.

use frc42_dispatch::match_method;
use fvm_actor_utils::{
blockstore::Blockstore, syscalls::fvm_syscalls::FvmSyscalls, util::ActorRuntime,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::result_large_err)]
Copy link

Copilot AI May 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding an inline comment to explain why the clippy lint for large errors is being ignored, including a reference to any related issue for future tracking.

Copilot uses AI. Check for mistakes.

use cid::Cid;
use frc42_dispatch::match_method;
use frc46_token::token::{
Expand Down