Skip to content

Commit

Permalink
update storage node version
Browse files Browse the repository at this point in the history
  • Loading branch information
0g-peterzhb committed Sep 13, 2024
1 parent 97ba360 commit c4b5be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 0g-storage-node
Submodule 0g-storage-node updated 61 files
+7 −2 Cargo.lock
+2 −0 node/file_location_cache/Cargo.toml
+32 −14 node/file_location_cache/src/file_location_cache.rs
+2 −2 node/file_location_cache/src/lib.rs
+1 −1 node/file_location_cache/src/test_util.rs
+4 −0 node/log_entry_sync/src/sync_manager/config.rs
+146 −31 node/log_entry_sync/src/sync_manager/log_entry_fetcher.rs
+11 −10 node/log_entry_sync/src/sync_manager/log_query.rs
+89 −25 node/log_entry_sync/src/sync_manager/mod.rs
+10 −2 node/miner/src/mine.rs
+1 −1 node/miner/src/miner_id.rs
+2 −3 node/miner/src/submitter.rs
+2 −0 node/network/src/lib.rs
+6 −3 node/network/src/types/pubsub.rs
+117 −0 node/router/src/batcher.rs
+14 −0 node/router/src/lib.rs
+127 −45 node/router/src/libp2p_event_handler.rs
+41 −18 node/router/src/metrics.rs
+10 −6 node/router/src/service.rs
+3 −1 node/rpc/src/types.rs
+4 −1 node/rpc/src/zgs/api.rs
+27 −1 node/rpc/src/zgs/impl.rs
+3 −0 node/shared_types/Cargo.toml
+99 −0 node/shared_types/src/lib.rs
+8 −2 node/src/config/convert.rs
+2 −1 node/src/config/mod.rs
+1 −0 node/storage/Cargo.toml
+116 −39 node/storage/src/config.rs
+18 −0 node/storage/src/log_store/flow_store.rs
+19 −0 node/storage/src/log_store/load_chunk/bitmap.rs
+5 −3 node/storage/src/log_store/load_chunk/chunk_data.rs
+3 −1 node/storage/src/log_store/load_chunk/mod.rs
+4 −2 node/storage/src/log_store/load_chunk/seal.rs
+28 −6 node/storage/src/log_store/log_manager.rs
+5 −0 node/storage/src/log_store/mod.rs
+20 −0 node/storage/src/log_store/tx_store.rs
+7 −6 node/sync/src/auto_sync/batcher_random.rs
+25 −5 node/sync/src/auto_sync/batcher_serial.rs
+103 −93 node/sync/src/auto_sync/sync_store.rs
+2 −2 node/sync/src/lib.rs
+21 −6 run/config-testnet-standard.toml
+21 −6 run/config-testnet-turbo.toml
+20 −5 run/config.toml
+9 −0 tests/config/0gchain-init-genesis.sh
+10 −0 tests/config/node_config.py
+9 −2 tests/mine_test.py
+8 −2 tests/mine_with_market_test.py
+2 −6 tests/random_test.py
+32 −0 tests/sync_auto_random_test.py
+32 −0 tests/sync_auto_sequential_test.py
+32 −0 tests/sync_auto_test.py
+3 −25 tests/sync_test.py
+2 −1 tests/test_all.py
+4 −5 tests/test_framework/blockchain_node.py
+0 −2 tests/test_framework/contracts.py
+32 −5 tests/test_framework/test_framework.py
+1 −0 tests/test_framework/zg_node.py
+3 −5 tests/test_framework/zgs_node.py
+19 −3 tests/utility/run_all.py
+8 −3 tests/utility/submission.py
+0 −5 tests/utility/utils.py

0 comments on commit c4b5be8

Please sign in to comment.