Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transparent tx in the unfinalised chain are not served by Zebrad in Regtest mode. #145

Open
idky137 opened this issue Dec 27, 2024 · 1 comment
Labels
bug Something isn't working PriorityHigh Current objectives and issues

Comments

@idky137
Copy link
Contributor

idky137 commented Dec 27, 2024

The following is the log from the send_to_transparent tests (running on both zcashd and zebrad) in integration-tests::wallet_to_validator::wallet_basic. Currently zebrad is not returning transparent tx data until it hits the finalised chain.

$ cargo nextest run send_to_transparent --no-capture
    Finished `test` profile [unoptimized + debuginfo] target(s) in 0.22s
    Starting 2 tests across 9 binaries (69 skipped)
       START             integration-tests::wallet_to_validator wallet_basic::zcashd_send_to_transparent

running 1 test
Checking connection with node..
Connected to node using IPv4 at address http://127.0.0.1:16952/.
Launching Server!

Launching TcpIngestor..
TcpIngestor listening at: 127.0.0.1:17361.
Launching WorkerPool..
Server Ready.
Zaino listening on port Some(17361).
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of get_block_range.
[TEST] Fetching blocks in range: 1-1.
[TEST] Requests in Queue: 1
[TEST] Requests in Queue: 1
[TEST] Received call of get_transaction.
[TEST] Received call of get_taddress_txids.
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of send_transaction.

Fetching Chain Height!

[integration-tests/tests/wallet_to_validator.rs:207:22] fetch_service.get_blockchain_info().await.unwrap().blocks.0 = 2

Fetching Tx From Unfinalized Chain!

[integration-tests/tests/wallet_to_validator.rs:211:41] fetch_service.get_address_txids(vec![clients.get_recipient_address("transparent").await],
height, height,).await = Ok(
    TxidsResponse {
        transactions: [
            "3d3a8819821a9e189007ae5880ce75d7485172cfec26558b3ef7e6b10e2a87b2",
        ],
    },
)
        SLOW [> 60.000s] integration-tests::wallet_to_validator wallet_basic::zcashd_send_to_transparent
test wallet_basic::zcashd_send_to_transparent has been running for over 60 seconds
        SLOW [>120.000s] integration-tests::wallet_to_validator wallet_basic::zcashd_send_to_transparent

Fetching Tx From Finalized Chain!

[integration-tests/tests/wallet_to_validator.rs:225:39] fetch_service.get_address_txids(vec![clients.get_recipient_address("transparent").await],
height, height,).await = Ok(
    TxidsResponse {
        transactions: [
            "3d3a8819821a9e189007ae5880ce75d7485172cfec26558b3ef7e6b10e2a87b2",
        ],
    },
)
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of get_block_range.
[TEST] Fetching blocks in range: 1-100.
**Batch** Current:    0 Total:    2
   **Blocks** Current Height:  100
[TEST] Requests in Queue: 1
[TEST] Received call of get_taddress_txids.
[TEST] Requests in Queue: 1
[TEST] Received call of get_block_range.
[TEST] Fetching blocks in range: 101-101.
[TEST] Requests in Queue: 1
[TEST] Received call of get_taddress_txids.

test wallet_basic::zcashd_send_to_transparent ... ok

test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 13 filtered out; finished in 149.95s

        PASS [ 149.964s] integration-tests::wallet_to_validator wallet_basic::zcashd_send_to_transparent
       START             integration-tests::wallet_to_validator wallet_basic::zebrad_send_to_transparent

running 1 test
Checking connection with node..
Connected to node using IPv4 at address http://127.0.0.1:16174/.
Launching Server!

Launching TcpIngestor..
TcpIngestor listening at: 127.0.0.1:21467.
Launching WorkerPool..
Server Ready.
Zaino listening on port Some(21467).
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of get_block_range.
[TEST] Fetching blocks in range: 1-1.
[TEST] Requests in Queue: 1
[TEST] Received call of get_taddress_txids.
[TEST] Requests in Queue: 1
[TEST] Received call of get_tree_state.
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of get_block_range.
[TEST] Fetching blocks in range: 2-101.
[TEST] Requests in Queue: 1
[TEST] Received call of get_taddress_txids.
        SLOW [> 60.000s] integration-tests::wallet_to_validator wallet_basic::zebrad_send_to_transparent
test wallet_basic::zebrad_send_to_transparent has been running for over 60 seconds
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of send_transaction.
^[[B^[[A[TEST] Requests in Queue: 1
[TEST] Received call of get_tree_state.
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of get_block_range.
^[[B[TEST] Fetching blocks in range: 102-102.
[TEST] Requests in Queue: 1
[TEST] Requests in Queue: 1
[TEST] Received call of get_tree_state.
[TEST] Received call of get_taddress_txids.
[TEST] Requests in Queue: 1
[TEST] Received call of get_transaction.
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of send_transaction.


Fetching Chain Height!

[integration-tests/tests/wallet_to_validator.rs:207:22] fetch_service.get_blockchain_info().await.unwrap().blocks.0 = 103


Fetching Tx From Unfinalized Chain!

[integration-tests/tests/wallet_to_validator.rs:211:41] fetch_service.get_address_txids(vec![clients.get_recipient_address("transparent").await],
height, height,).await = Ok(
    TxidsResponse {
        transactions: [],
    },
)


Fetching Tx From Finalized Chain!

[integration-tests/tests/wallet_to_validator.rs:225:39] fetch_service.get_address_txids(vec![clients.get_recipient_address("transparent").await],
height, height,).await = Ok(
    TxidsResponse {
        transactions: [
            "e0a95c10e1d852aa2cba6e9ee936311c2fe1a74e8074ca6d36a243ff921cb516",
        ],
    },
)
[TEST] Requests in Queue: 1
[TEST] Received call of get_latest_block.
[TEST] Requests in Queue: 1
[TEST] Received call of get_block_range.
[TEST] Fetching blocks in range: 1-100.
[TEST] Requests in Queue: 1
[TEST] Received call of get_taddress_txids.
[TEST] Requests in Queue: 1
**Batch** Current:    1 Total:    3
   **Blocks** Current Height:  200
[TEST] Received call of get_block_range.
[TEST] Fetching blocks in range: 101-200.
[TEST] Requests in Queue: 1
[TEST] Received call of get_taddress_txids.
[TEST] Requests in Queue: 1
[TEST] Received call of get_block_range.
[TEST] Fetching blocks in range: 201-202.
**Batch** Current:    2 Total:    3
   **Blocks** Current Height:  202
[TEST] Requests in Queue: 1
[TEST] Received call of get_taddress_txids.

2024-12-27T16:08:47.983335Z  INFO zebrad::components::tracing::component: started tracing component filter="info" TRACING_STATIC_MAX_LEVEL=LevelFilter::INFO LOG_STATIC_MAX_LEVEL=Info
2024-12-27T16:08:47.983346Z  INFO zebrad::components::tracing::component: set 'tracing.progress_bar ="summary"' in zebrad.toml to activate progress bars
2024-12-27T16:08:47.983348Z  INFO zebrad::application: Diagnostic Metadata:
version: 2.1.0+9.g0fe47bb
Zcash network: Regtest
running state version: 26.0.0
initial disk state version: creating.new.database
features: default,getblocktemplate_rpcs,howudoin,indicatif,progress_bar,release_max_level_info
branch: main
git commit: 0fe47bb
commit timestamp: 2024-12-21T02:29:16.000000000Z
target triple: x86_64-unknown-linux-gnu
rust compiler: 1.82.0
rust release date: 2024-10-15
optimization level: 3
debug checks: false
2024-12-27T16:08:47.983349Z  INFO zebrad::application: loaded zebrad config config_path=Some("/tmp/.tmpwkQ4fy/zebrad.toml") config=ZebradConfig { consensus: Config { checkpoint_sync: true }, metrics: Config { endpoint_addr: None }, network: Config { listen_addr: 127.0.0.1:17401, external_addr: None, network: Regtest { activation_heights: {Height(0): Genesis, Height(1): Nu6} }, initial_mainnet_peers: {"dnsseed.z.cash:8233", "dnsseed.str4d.xyz:8233", "mainnet.seeder.zfnd.org:8233", "mainnet.is.yolo.money:8233"}, initial_testnet_peers: {"dnsseed.testnet.z.cash:18233", "testnet.seeder.zfnd.org:18233", "testnet.is.yolo.money:18233"}, cache_dir: IsEnabled(false), peerset_initial_target_size: 25, crawl_new_peer_interval: 61s, max_connections_per_ip: 1 }, state: Config { cache_dir: "/tmp/.tmpoUsMTd", ephemeral: false, delete_old_database: true, debug_stop_at_height: None, debug_validity_check_interval: None }, tracing: Config { inner: InnerConfig { use_color: true, force_use_color: false, filter: None, buffer_limit: 128000, endpoint_addr: None, flamegraph: None, progress_bar: None, log_file: None, use_journald: false } }, sync: Config { download_concurrency_limit: 50, checkpoint_verify_concurrency_limit: 1000, full_verify_concurrency_limit: 20, parallel_cpu_threads: 0 }, mempool: Config { tx_cost_limit: 80000000, eviction_memory_time: 3600s, debug_enable_at_height: None }, rpc: Config { listen_addr: Some(127.0.0.1:16174), indexer_listen_addr: None, parallel_cpu_threads: 0, debug_force_finished_sync: false, cookie_dir: "/tmp/.tmpoUsMTd", enable_cookie_auth: false }, mining: Config { miner_address: Some(TransparentAddress { network_kind: Testnet, pub_key_hash: "17a95184b6b158dcb8d576fc182d9b7f14377d04" }), extra_coinbase_data: None, debug_like_zcashd: true } }
2024-12-27T16:08:47.983388Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::application: initialized rayon thread pool for CPU-bound tasks num_threads=16
2024-12-27T16:08:47.984678Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: Starting zebrad
2024-12-27T16:08:47.984752Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: initializing node state
2024-12-27T16:08:47.984800Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: opening database, this may take a few minutes
2024-12-27T16:08:47.984902Z  WARN zebra_state::service::finalized_state::disk_db: could not canonicalize "/tmp/.tmpoUsMTd/state/v25/regtest": No such file or directory (os error 2)
2024-12-27T16:08:47.984912Z  INFO zebra_state::service::finalized_state::disk_format::upgrade: creating new database with the current format running_version=26.0.0
2024-12-27T16:08:47.985167Z  INFO zebra_state::service::finalized_state::disk_db: the open file limit is high enough for Zebra current_limit=1024 min_limit=512 ideal_limit=1024
2024-12-27T16:08:48.013850Z  INFO zebra_state::service::finalized_state::disk_db: Opened Zebra state cache at /tmp/.tmpoUsMTd/state/v26/regtest
2024-12-27T16:08:48.013905Z  INFO zebra_state::service::finalized_state: loaded Zebra state cache tip=None
2024-12-27T16:08:48.014012Z  INFO zebra_state::service: starting legacy chain check
2024-12-27T16:08:48.014030Z  INFO zebra_state::service: cached state consensus branch is valid: no legacy chain found
2024-12-27T16:08:48.014038Z  INFO zebra_state::service::finalized_state::disk_format::upgrade: marked database format as newly created running_version=26.0.0 disk_version=26.0.0
2024-12-27T16:08:48.014084Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: logging database metrics on startup
2024-12-27T16:08:48.014141Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebra_state::service::finalized_state::disk_db: the open file limit is high enough for Zebra current_limit=1024 min_limit=512 ideal_limit=1024
2024-12-27T16:08:48.014765Z  INFO zebra_state::service::finalized_state::disk_format::upgrade: database format is valid running_version=26.0.0 inital_disk_version=None
2024-12-27T16:08:48.014827Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebra_state::service::finalized_state::disk_db: Total Database Disk Size: 0 B
2024-12-27T16:08:48.014836Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebra_state::service::finalized_state::disk_db: Total Live Data Disk Size: 0 B
2024-12-27T16:08:48.014839Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebra_state::service::finalized_state::disk_db: Total Database Memory Size: 49.2 KB
2024-12-27T16:08:48.014882Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: initializing network
2024-12-27T16:08:48.014902Z  INFO {zebrad="0fe47bb" net="Regtest"}:open_listener{addr=127.0.0.1:17401}: zebra_network::peer_set::initialize: Trying to open Zcash protocol endpoint at 127.0.0.1:17401...
2024-12-27T16:08:48.014940Z  INFO {zebrad="0fe47bb" net="Regtest"}:open_listener{addr=127.0.0.1:17401}: zebra_network::peer_set::initialize: Opened Zcash protocol endpoint at 127.0.0.1:17401
2024-12-27T16:08:48.014985Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebra_network::address_book_updater: starting the address book updater
2024-12-27T16:08:48.015211Z  INFO {zebrad="0fe47bb" net="Regtest"}:add_initial_peers: zebra_network::peer_set::initialize: connecting to initial peer set ipv4_peer_count=0 ipv6_peer_count=0
2024-12-27T16:08:48.015224Z  INFO {zebrad="0fe47bb" net="Regtest"}:add_initial_peers: zebra_network::peer_set::initialize: finished connecting to initial seed and disk cache peers handshake_success_total=0 handshake_error_total=0 outbound_connections=0
2024-12-27T16:08:48.015278Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebra_network::peer_set::initialize: sending initial request for peers active_initial_peer_count=0
2024-12-27T16:08:48.015300Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: initializing verifiers
2024-12-27T16:08:48.015356Z  INFO {zebrad="0fe47bb" net="Regtest"}:init{config=Config { checkpoint_sync: true } network=Regtest { activation_heights: {Height(0): Genesis, Height(1): Nu6} }}: zebra_consensus::router: starting state checkpoint validation
2024-12-27T16:08:48.015359Z  INFO {zebrad="0fe47bb" net="Regtest"}:crawl_and_dial{new_peer_interval=61s}: zebra_network::peer_set::initialize: starting the peer address crawler crawl_new_peer_interval=61s outbound_connections=0
2024-12-27T16:08:48.015572Z  INFO {zebrad="0fe47bb" net="Regtest"}:init{config=Config { checkpoint_sync: true } network=Regtest { activation_heights: {Height(0): Genesis, Height(1): Nu6} }}: zebra_consensus::router: initializing block verifier router tip=None max_checkpoint_height=Height(0)
2024-12-27T16:08:48.015582Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: initializing syncer
2024-12-27T16:08:48.015585Z  INFO {zebrad="0fe47bb" net="Regtest"}:init{config=Config { checkpoint_sync: true } network=Regtest { activation_heights: {Height(0): Genesis, Height(1): Nu6} }}: zebra_consensus::router: state is not fully synced yet, remaining checkpoints will be verified during syncing
2024-12-27T16:08:48.015586Z  INFO {zebrad="0fe47bb" net="Regtest"}:init{config=Config { checkpoint_sync: true } network=Regtest { activation_heights: {Height(0): Genesis, Height(1): Nu6} }}: zebra_consensus::router: finished state checkpoint validation
2024-12-27T16:08:48.015631Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: initializing mempool
2024-12-27T16:08:48.015639Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: fully initializing inbound peer request handler
2024-12-27T16:08:48.015641Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawning RPC server
2024-12-27T16:08:48.015642Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: Trying to open RPC endpoint at 127.0.0.1:16174...
2024-12-27T16:08:48.015707Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebra_rpc::server: Opened RPC endpoint at 127.0.0.1:16174
2024-12-27T16:08:48.015720Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawning block gossip task
2024-12-27T16:08:48.015722Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawning mempool queue checker task
2024-12-27T16:08:48.015723Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawning mempool transaction gossip task
2024-12-27T16:08:48.015725Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawning delete old databases task
2024-12-27T16:08:48.015727Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawning progress logging task
2024-12-27T16:08:48.015727Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::sync::gossip: initializing block gossip task
2024-12-27T16:08:48.015729Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawning end of support checking task
2024-12-27T16:08:48.015730Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool::gossip: initializing transaction gossip task
2024-12-27T16:08:48.015730Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool::queue_checker: initializing mempool queue checker task
2024-12-27T16:08:48.015733Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawning mempool crawler task
2024-12-27T16:08:48.015734Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::sync::end_of_support: Starting end of support task
2024-12-27T16:08:48.015736Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawning syncer task
2024-12-27T16:08:48.015737Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool::crawler: initializing mempool crawler task
2024-12-27T16:08:48.015736Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebra_state::config: checking for old database versions db_kind="state"
2024-12-27T16:08:48.015740Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::sync::progress: initial sync is waiting to download the genesis block sync_percent=0.000 % current_height=None
2024-12-27T16:08:48.015774Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebra_state::config: finished old database version cleanup task
2024-12-27T16:08:48.015795Z  INFO {zebrad="0fe47bb" net="Regtest"}:checkpoint: zebra_consensus::checkpoint: verified checkpoint range block_count=1 current_range=(Unbounded, Included(Height(0)))
2024-12-27T16:08:48.015799Z  INFO {zebrad="0fe47bb" net="Regtest"}:checkpoint: zebra_consensus::checkpoint: verified final checkpoint: starting full validation final_checkpoint_height=Height(0)
2024-12-27T16:08:48.072037Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::commands::start: spawned initial Zebra tasks
2024-12-27T16:08:53.017671Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool: enabling mempool for debugging best_tip_height=Height(0) enable_at_height=Height(0)
2024-12-27T16:08:53.017693Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool: activating mempool: Zebra is close to the tip tip_height=Height(0)
2024-12-27T16:08:58.017355Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::sync::end_of_support: Release always valid in Testnet
2024-12-27T16:09:03.119542Z  INFO zebra_rpc::methods::get_block_template_rpcs: submit block accepted block_hash=block::Hash("6095670f4d9a72fec27443be51da4b330db4a494be5dac413d27e4a412bacae2") block_height="1"
2024-12-27T16:09:08.022597Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool: resetting mempool: switched best chain, skipped blocks, or activated network upgrade tip_height=Height(1)
2024-12-27T16:09:08.022615Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool: enabling mempool for debugging best_tip_height=Height(1) enable_at_height=Height(0)
2024-12-27T16:09:08.022617Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool: activating mempool: Zebra is close to the tip tip_height=Height(1)
2024-12-27T16:09:08.022620Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool: re-verifying mempool transactions after a chain fork transactions=0
2024-12-27T16:09:11.640734Z  INFO zebra_rpc::methods::get_block_template_rpcs: submit block accepted block_hash=block::Hash("437372d8a9bf638b459b59a952fdf35b5f92784dfb98d064403c3c059fb55dff") block_height="2"

...

2024-12-27T16:09:11.746105Z  INFO zebra_rpc::methods::get_block_template_rpcs: submit block accepted block_hash=block::Hash("e71a1ecb1b59f04ebd56bc17d17a27130ab119efb3c50dccd8886bba033a49ba") block_height="101"
2024-12-27T16:09:48.032528Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::sync::progress: estimated progress to chain tip sync_percent=0.002% current_height=Height(101) network_upgrade=Nu6 remaining_sync_blocks=5846994 time_since_last_state_block=0s
2024-12-27T16:09:49.016532Z  WARN {zebrad="0fe47bb" net="Regtest"}:crawl_and_dial{new_peer_interval=61s}:crawl{should_always_dial=true}: zebra_network::peer_set::set: network request with no peer connections. Hint: check your network connection address_metrics=AddressMetrics { responded: 0, never_attempted_gossiped: 0, failed: 0, attempt_pending: 0, recently_live: 0, recently_stopped_responding: 0, num_addresses: 0, address_limit: 5000 }
2024-12-27T16:09:55.420045Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool::gossip: sending mempool transaction broadcast request=AdvertiseTransactionIds(1) changes=1
2024-12-27T16:09:55.471760Z  INFO zebra_rpc::methods::get_block_template_rpcs: submit block accepted block_hash=block::Hash("c219b2772594f75124199a7d75577e9a9e76047c6b096bfaa1001d60a23c4b1f") block_height="102"
2024-12-27T16:09:57.018418Z  INFO {zebrad="0fe47bb" net="Regtest"}:crawl_and_dial{new_peer_interval=61s}:crawl{should_always_dial=true}: zebra_network::peer_set::candidate_set: timeout waiting for peer service readiness or peer responses
2024-12-27T16:10:34.629211Z  INFO {zebrad="0fe47bb" net="Regtest"}: zebrad::components::mempool::gossip: sending mempool transaction broadcast request=AdvertiseTransactionIds(1) changes=1
2024-12-27T16:10:34.710517Z  INFO zebra_rpc::methods::get_block_template_rpcs: submit block accepted block_hash=block::Hash("1a84fb16409b32620e9096f3da2d4cc7372786b2a390adbcb27515f00ea3d698") block_height="103"

...

2024-12-27T16:10:34.895193Z  INFO zebra_rpc::methods::get_block_template_rpcs: submit block accepted block_hash=block::Hash("433f202802057a61167a4a850a53649e4e71f302a591256acf7dbda9b18c4340") block_height="202"

test wallet_basic::zebrad_send_to_transparent ... ok

test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 13 filtered out; finished in 113.09s

        PASS [ 113.104s] integration-tests::wallet_to_validator wallet_basic::zebrad_send_to_transparent
------------
     Summary [ 263.068s] 2 tests run: 2 passed (2 slow), 69 skipped
@idky137 idky137 added bug Something isn't working PriorityHigh Current objectives and issues labels Dec 27, 2024
@idky137 idky137 changed the title Trasparent tx in the unfinalised chain are not served by Zebrad regtest mode. Transparent tx in the unfinalised chain are not served by Zebrad in Regtest mode. Dec 27, 2024
@idky137
Copy link
Contributor Author

idky137 commented Jan 10, 2025

Relevant test can be found here: [https://github.com/zingolabs/zaino/blob/37435441ebd577b8a21ab794794222c85e981fc2/integration-tests/tests/wallet_to_validator.rs#L153]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working PriorityHigh Current objectives and issues
Projects
None yet
Development

No branches or pull requests

1 participant