From ff36f7f76b5383f38fa7be1059dd9608ada7a7d8 Mon Sep 17 00:00:00 2001 From: Moudy Date: Thu, 26 Feb 2026 23:59:44 +0100 Subject: [PATCH] Change seq_poll_timeout to seq_poll_timeout_millis somehow during Daniil's PR the polltime was changed from `ms` to `s` and this broke wallet module ui. --- wallet/configs/debug/wallet_config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wallet/configs/debug/wallet_config.json b/wallet/configs/debug/wallet_config.json index aae6293e..b99d0a95 100644 --- a/wallet/configs/debug/wallet_config.json +++ b/wallet/configs/debug/wallet_config.json @@ -1,7 +1,7 @@ { "override_rust_log": null, "sequencer_addr": "http://127.0.0.1:3040", - "seq_poll_timeout": "30s", + "seq_poll_timeout_millis": 30000", "seq_tx_poll_max_blocks": 15, "seq_poll_max_retries": 10, "seq_block_poll_max_amount": 100, @@ -144,4 +144,4 @@ } ], "basic_auth": null -} \ No newline at end of file +}