From cfe4b45c41585c4b450fa7e87da12cdbe9349900 Mon Sep 17 00:00:00 2001
From: 0g-peterzhb <158457852+0g-peterzhb@users.noreply.github.com>
Date: Mon, 24 Mar 2025 16:51:53 +0800
Subject: [PATCH] add api of getting available file info by root (#357)
* add api of getting available file info by root
---
.github/workflows/tests.yml | 5 ++
node/rpc/src/zgs/api.rs | 6 +-
node/rpc/src/zgs/impl.rs | 31 ++++++--
node/storage-async/src/lib.rs | 16 +++-
node/storage/src/log_store/log_manager.rs | 18 ++++-
node/storage/src/log_store/mod.rs | 18 +++--
tests/cache_test.py | 5 +-
tests/config/node_config.py | 9 +--
tests/crash_test.py | 50 ++++---------
tests/fuzz_test.py | 18 ++---
tests/long_time_mine_test_local.py | 6 +-
tests/mine_test.py | 32 ++++++--
tests/mine_with_market_test.py | 58 +++++++++++----
tests/network_discovery_test.py | 12 ++-
tests/network_discovery_upgrade_test.py | 13 +++-
tests/network_tcp_shard_test.py | 18 +++--
tests/pruner_test.py | 11 ++-
tests/random_test.py | 27 +++++--
tests/root_consistency_test.py | 3 -
tests/rpc_test.py | 13 +---
tests/same_root_test.py | 11 ++-
tests/shard_submission_test.py | 27 +++----
tests/shard_sync_test.py | 33 +++++---
tests/snapshot_test.py | 7 +-
tests/submission_test.py | 12 +--
tests/sync_auto_historical_test.py | 38 +++++++---
tests/sync_auto_test.py | 8 +-
tests/sync_chunks_test.py | 35 ++++++---
tests/sync_file_test.py | 6 +-
tests/test_all.py | 4 +-
tests/test_framework/blockchain_node.py | 85 +++++++++++++--------
tests/test_framework/contract_proxy.py | 43 ++++++-----
tests/test_framework/contracts.py | 2 +-
tests/test_framework/test_framework.py | 85 ++++++++++++++-------
tests/test_framework/zg_node.py | 55 ++++++++++----
tests/test_framework/zgs_node.py | 29 +++++---
tests/utility/build_binary.py | 91 +++++++++++++++++------
tests/utility/merkle_tree.py | 11 ++-
tests/utility/run_all.py | 30 +++++++-
tests/utility/simple_rpc_proxy.py | 10 ++-
tests/utility/spec.py | 2 +-
tests/utility/submission.py | 11 ++-
tests/utility/utils.py | 12 ++-
43 files changed, 676 insertions(+), 340 deletions(-)
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 4a937bf..20726c8 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -45,6 +45,11 @@ jobs:
python-version: '3.9'
cache: 'pip'
+ - name: Set up Go
+ uses: actions/setup-go@v4
+ with:
+ go-version: '1.22'
+
- name: Install dependencies
run: |
python -m pip install --upgrade pip
diff --git a/node/rpc/src/zgs/api.rs b/node/rpc/src/zgs/api.rs
index 32dcfb4..a922da5 100644
--- a/node/rpc/src/zgs/api.rs
+++ b/node/rpc/src/zgs/api.rs
@@ -63,7 +63,11 @@ pub trait Rpc {
async fn check_file_finalized(&self, tx_seq_or_root: TxSeqOrRoot) -> RpcResult