-
Notifications
You must be signed in to change notification settings - Fork 57
feat!: generate stealth statements from wallet api+new sending test #1620
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,8 +24,14 @@ use std::{net::SocketAddr, path::PathBuf}; | |
|
|
||
| use clap::Parser; | ||
| use minotari_app_utilities::common_cli_args::CommonCliArgs; | ||
| use tari_common::configuration::{ConfigOverrideProvider, Network as L1Network}; | ||
| use tari_ootle_app_utilities::{configuration::convert_l1_network_to_network, p2p_config::ReachabilityMode}; | ||
| use tari_common::{ | ||
| configuration::{ConfigOverrideProvider, Network as L1Network}, | ||
| ConfigPath, | ||
| }; | ||
| use tari_ootle_app_utilities::{ | ||
| configuration::convert_l1_network_to_network, | ||
| p2p_config::{PeerSeedsConfig, ReachabilityMode}, | ||
| }; | ||
|
Comment on lines
+27
to
+34
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainVerify if ConfigPath import is necessary. The Run the following script to verify if 🏁 Script executed: #!/bin/bash
# Description: Check if ConfigPath is used in the cli.rs file
# Search for ConfigPath usage excluding the import line
rg -n 'ConfigPath' applications/tari_validator_node/src/cli.rs | grep -v 'use.*ConfigPath'Length of output: 18 Remove unused The verification confirms that 🤖 Prompt for AI Agents |
||
| use tari_ootle_common_types::Network; | ||
| use url::Url; | ||
|
|
||
|
|
@@ -100,7 +106,14 @@ impl ConfigOverrideProvider for Cli { | |
| )); | ||
| } | ||
| if !self.peer_seeds.is_empty() { | ||
| overrides.push(("p2p.seeds.peer_seeds".to_string(), self.peer_seeds.join(","))); | ||
| overrides.push(( | ||
| format!("{}.peer_seeds", PeerSeedsConfig::main_key_prefix()), | ||
| self.peer_seeds.join(","), | ||
| )); | ||
| overrides.push(( | ||
| format!("{}.{}.peer_seeds", network, PeerSeedsConfig::main_key_prefix()), | ||
| self.peer_seeds.join(","), | ||
| )); | ||
| } | ||
| if let Some(listener_port) = self.listener_port { | ||
| overrides.push(( | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.