removing unused code

This commit is contained in:
Jędrzej Stuczyński
2024-03-28 09:10:57 +00:00
parent 0b46d64869
commit c585753d02
2 changed files with 0 additions and 14 deletions
@@ -1,13 +0,0 @@
// Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0
use crate::IdentityKey;
pub struct NymNode {
/// Network address of this mixnode, for example 1.1.1.1 or foo.nymnode.com
/// that will used for discovering other capabilities of this node.
pub host: String,
/// Base58-encoded ed25519 EdDSA public key.
pub identity_key: IdentityKey,
}
@@ -2,7 +2,6 @@
// SPDX-License-Identifier: GPL-3.0-only
use clap::{crate_name, crate_version, Parser};
use error::NetworkRequesterError;
use nym_bin_common::logging::{maybe_print_banner, setup_logging};
use nym_network_defaults::setup_env;