ui: remove unused dandelion field
This commit is contained in:
parent
c39a5a3c8e
commit
114973ecf2
1 changed files with 1 additions and 5 deletions
|
@ -34,9 +34,6 @@ pub struct DandelionSetup {
|
||||||
|
|
||||||
/// Stem phase probability value (stem 90% of the time, fluff 10% of the time by default).
|
/// Stem phase probability value (stem 90% of the time, fluff 10% of the time by default).
|
||||||
stem_prob_edit: String,
|
stem_prob_edit: String,
|
||||||
|
|
||||||
/// Flag to always stem our (pushed via api) txs regardless of stem/fluff epoch.
|
|
||||||
always_stem_our_txs_edit: bool,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for DandelionSetup {
|
impl Default for DandelionSetup {
|
||||||
|
@ -45,8 +42,7 @@ impl Default for DandelionSetup {
|
||||||
epoch_edit: NodeConfig::get_dandelion_epoch(),
|
epoch_edit: NodeConfig::get_dandelion_epoch(),
|
||||||
embargo_edit: NodeConfig::get_reorg_cache_period(),
|
embargo_edit: NodeConfig::get_reorg_cache_period(),
|
||||||
aggregation_edit: NodeConfig::get_dandelion_aggregation(),
|
aggregation_edit: NodeConfig::get_dandelion_aggregation(),
|
||||||
stem_prob_edit: NodeConfig::get_stem_probability(),
|
stem_prob_edit: NodeConfig::get_stem_probability()
|
||||||
always_stem_our_txs_edit: NodeConfig::always_stem_our_txs(),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue