diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e3ddca7..13e6de52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: arm-risc0 CI on: push: - branches: [ main, develop ] + branches: [ main, develop, solana ] pull_request: - branches: [ main, develop ] + branches: [ main, develop, solana ] env: CARGO_TERM_COLOR: always diff --git a/arm/src/action_tree.rs b/arm/src/action_tree.rs index 34be77ec..4a99e19a 100644 --- a/arm/src/action_tree.rs +++ b/arm/src/action_tree.rs @@ -87,7 +87,6 @@ impl MerkleTree { ) { if cur_layer.len() > 1 { let sibling = { - #[allow(clippy::manual_is_multiple_of)] let is_sibling_left = position % 2 != 0; let sibling_value = if is_sibling_left { cur_layer[position - 1]