From 153c22e9ddd1514b3d604f191f5cb3b06b5f4672 Mon Sep 17 00:00:00 2001 From: Xuyang Song Date: Mon, 8 Jun 2026 17:11:13 +0800 Subject: [PATCH 1/2] ci: add solana branch to CI trigger branches --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From f3db0cc62ad1e311698948924b350b92ad497d56 Mon Sep 17 00:00:00 2001 From: Xuyang Song Date: Mon, 8 Jun 2026 17:14:56 +0800 Subject: [PATCH 2/2] fix clippy --- arm/src/action_tree.rs | 1 - 1 file changed, 1 deletion(-) 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]