diff --git a/wallet/src/checker.rs b/wallet/src/checker.rs index 8f22fcd9..b2c0e6a2 100644 --- a/wallet/src/checker.rs +++ b/wallet/src/checker.rs @@ -122,6 +122,6 @@ pub fn refresh_outputs( } pub fn get_tip_from_node(config: &WalletConfig) -> Result { - let url = format!("{}/v1/chain/1", config.check_node_api_http_addr); + let url = format!("{}/v2/chain", config.check_node_api_http_addr); api::client::get::(url.as_str()).map_err(|e| Error::Node(e)) }