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

feat!(crates): remove iota name service #1722

Merged
merged 8 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions crates/iota-config/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use anyhow::Result;
use iota_keys::keypair_file::{read_authority_keypair_from_file, read_keypair_from_file};
use iota_protocol_config::{Chain, SupportedProtocolVersions};
use iota_types::{
base_types::{IotaAddress, ObjectID},
base_types::IotaAddress,
committee::EpochId,
crypto::{
get_key_pair_from_rng, AccountKeyPair, AuthorityKeyPair, AuthorityPublicKeyBytes,
Expand Down Expand Up @@ -127,15 +127,6 @@ pub struct NodeConfig {
#[serde(default)]
pub expensive_safety_check_config: ExpensiveSafetyCheckConfig,

#[serde(skip_serializing_if = "Option::is_none")]
pub name_service_package_address: Option<IotaAddress>,

#[serde(skip_serializing_if = "Option::is_none")]
pub name_service_registry_id: Option<ObjectID>,

#[serde(skip_serializing_if = "Option::is_none")]
pub name_service_reverse_registry_id: Option<ObjectID>,

#[serde(default)]
pub transaction_deny_config: TransactionDenyConfig,

Expand Down
Loading
Loading