mirror of
https://github.com/hinto-janai/gupax.git
synced 2024-11-17 09:47:36 +00:00
node: add plowsof to community node list
This commit is contained in:
parent
14672bfbba
commit
a65bbf7a1c
2 changed files with 13 additions and 5 deletions
|
@ -65,6 +65,8 @@ With Monero GUI managing the Monero node on one side and Gupax managing P2Pool/X
|
||||||
| MajesticBankIs | node.majesticbank.is | 18089 |
|
| MajesticBankIs | node.majesticbank.is | 18089 |
|
||||||
| MajesticBankSu | node.majesticbank.su | 18089 |
|
| MajesticBankSu | node.majesticbank.su | 18089 |
|
||||||
| Monerujo | nodex.monerujo.io | 18081 |
|
| Monerujo | nodex.monerujo.io | 18081 |
|
||||||
|
| Plowsof1 | node.monerodevs.org | 18089 |
|
||||||
|
| Plowsof2 | node2.monerodevs.org | 18089 |
|
||||||
| Rino | node.community.rino.io | 18081 |
|
| Rino | node.community.rino.io | 18081 |
|
||||||
| Seth | node.sethforprivacy.com | 18089 |
|
| Seth | node.sethforprivacy.com | 18089 |
|
||||||
| Singapore | singapore.node.xmr | 18081 |
|
| Singapore | singapore.node.xmr | 18081 |
|
||||||
|
|
16
src/node.rs
16
src/node.rs
|
@ -27,7 +27,7 @@ use hyper::{
|
||||||
};
|
};
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------- Node list
|
//---------------------------------------------------------------------------------------------------- Node list
|
||||||
// Community Monerod nodes. All of these have ZMQ on 18083.
|
// Community Monerod nodes. ALL BUT ONE of these have ZMQ on 18083 (plowsof pls)
|
||||||
// Adding/removing nodes will need changes to pretty
|
// Adding/removing nodes will need changes to pretty
|
||||||
// much all the code in this file, and the code that
|
// much all the code in this file, and the code that
|
||||||
// handles the actual Enum selector in the P2Pool tab.
|
// handles the actual Enum selector in the P2Pool tab.
|
||||||
|
@ -41,6 +41,8 @@ pub const FEATHER_2: &'static str = "selsta2.featherwallet.net:18081";
|
||||||
pub const MAJESTICBANK_IS: &'static str = "node.majesticbank.is:18089";
|
pub const MAJESTICBANK_IS: &'static str = "node.majesticbank.is:18089";
|
||||||
pub const MAJESTICBANK_SU: &'static str = "node.majesticbank.su:18089";
|
pub const MAJESTICBANK_SU: &'static str = "node.majesticbank.su:18089";
|
||||||
pub const MONERUJO: &'static str = "nodex.monerujo.io:18081";
|
pub const MONERUJO: &'static str = "nodex.monerujo.io:18081";
|
||||||
|
pub const PLOWSOF_1: &'static str = "node.monerodevs.org:18089";
|
||||||
|
pub const PLOWSOF_2: &'static str = "node2.monerodevs.org:18089";
|
||||||
pub const RINO: &'static str = "node.community.rino.io:18081";
|
pub const RINO: &'static str = "node.community.rino.io:18081";
|
||||||
pub const SETH: &'static str = "node.sethforprivacy.com:18089";
|
pub const SETH: &'static str = "node.sethforprivacy.com:18089";
|
||||||
pub const SUPPORTXMR: &'static str = "node.supportxmr.com:18081";
|
pub const SUPPORTXMR: &'static str = "node.supportxmr.com:18081";
|
||||||
|
@ -48,15 +50,15 @@ pub const SUPPORTXMR_IR: &'static str = "node.supportxmr.ir:18081";
|
||||||
pub const SINGAPORE: &'static str = "singapore.node.xmr.pm:18089";
|
pub const SINGAPORE: &'static str = "singapore.node.xmr.pm:18089";
|
||||||
pub const XMRVSBEAST: &'static str = "p2pmd.xmrvsbeast.com:18081";
|
pub const XMRVSBEAST: &'static str = "p2pmd.xmrvsbeast.com:18081";
|
||||||
|
|
||||||
pub const NODE_IPS: [&'static str; 16] = [
|
pub const NODE_IPS: [&'static str; 18] = [
|
||||||
C3POOL,CAKE,CAKE_EU,CAKE_UK,CAKE_US,FEATHER_1,FEATHER_2,MAJESTICBANK_IS,MAJESTICBANK_SU,
|
C3POOL,CAKE,CAKE_EU,CAKE_UK,CAKE_US,FEATHER_1,FEATHER_2,MAJESTICBANK_IS,MAJESTICBANK_SU,
|
||||||
MONERUJO,RINO,SETH,SUPPORTXMR,SUPPORTXMR_IR,SINGAPORE,XMRVSBEAST,
|
MONERUJO,PLOWSOF_1,PLOWSOF_2,RINO,SETH,SUPPORTXMR,SUPPORTXMR_IR,SINGAPORE,XMRVSBEAST,
|
||||||
];
|
];
|
||||||
|
|
||||||
#[derive(Copy,Clone,Eq,PartialEq,Debug,Deserialize,Serialize)]
|
#[derive(Copy,Clone,Eq,PartialEq,Debug,Deserialize,Serialize)]
|
||||||
pub enum NodeEnum {
|
pub enum NodeEnum {
|
||||||
C3pool,Cake,CakeEu,CakeUk,CakeUs,MajesticBankIs,MajesticBankSu,Monerujo,
|
C3pool,Cake,CakeEu,CakeUk,CakeUs,MajesticBankIs,MajesticBankSu,Monerujo,Plowsof1,
|
||||||
Rino,Feather1,Feather2,Seth,SupportXmr,SupportXmrIr,Singapore,XmrVsBeast,
|
Plowsof2,Rino,Feather1,Feather2,Seth,SupportXmr,SupportXmrIr,Singapore,XmrVsBeast,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl std::fmt::Display for NodeEnum {
|
impl std::fmt::Display for NodeEnum {
|
||||||
|
@ -104,6 +106,8 @@ pub fn ip_to_enum(ip: &'static str) -> NodeEnum {
|
||||||
MAJESTICBANK_IS => MajesticBankIs,
|
MAJESTICBANK_IS => MajesticBankIs,
|
||||||
MAJESTICBANK_SU => MajesticBankSu,
|
MAJESTICBANK_SU => MajesticBankSu,
|
||||||
MONERUJO => Monerujo,
|
MONERUJO => Monerujo,
|
||||||
|
PLOWSOF_1 => Plowsof1,
|
||||||
|
PLOWSOF_2 => Plowsof2,
|
||||||
RINO => Rino,
|
RINO => Rino,
|
||||||
SETH => Seth,
|
SETH => Seth,
|
||||||
SINGAPORE => Singapore,
|
SINGAPORE => Singapore,
|
||||||
|
@ -125,6 +129,8 @@ pub fn enum_to_ip(node: NodeEnum) -> &'static str {
|
||||||
MajesticBankIs => MAJESTICBANK_IS,
|
MajesticBankIs => MAJESTICBANK_IS,
|
||||||
MajesticBankSu => MAJESTICBANK_SU,
|
MajesticBankSu => MAJESTICBANK_SU,
|
||||||
Monerujo => MONERUJO,
|
Monerujo => MONERUJO,
|
||||||
|
Plowsof1 => PLOWSOF_1,
|
||||||
|
Plowsof2 => PLOWSOF_2,
|
||||||
Rino => RINO,
|
Rino => RINO,
|
||||||
Seth => SETH,
|
Seth => SETH,
|
||||||
Singapore => SINGAPORE,
|
Singapore => SINGAPORE,
|
||||||
|
|
Loading…
Reference in a new issue