mirror of
https://github.com/creating2morrow/neveko.git
synced 2024-12-22 19:49:24 +00:00
update monero version
This commit is contained in:
parent
ef1dd86675
commit
d7b486b036
4 changed files with 5 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -10,6 +10,6 @@ notes.txt
|
||||||
.vscode/settings.json
|
.vscode/settings.json
|
||||||
*.bz2
|
*.bz2
|
||||||
*.zip
|
*.zip
|
||||||
*/monero-x86_64-linux-gnu-v0.18.3.1/**
|
*/monero-x86_64-linux-gnu-v0.18.3.3/**
|
||||||
*/i2p-zero-linux.v1.20/**
|
*/i2p-zero-linux.v1.20/**
|
||||||
*.jar
|
*.jar
|
||||||
|
|
|
@ -26,12 +26,12 @@ NEVidebla-EKOnomia (invisible economy)
|
||||||
* `git clone https://github.com/creating2morrow/neveko`
|
* `git clone https://github.com/creating2morrow/neveko`
|
||||||
* `cd neveko && ./scripts/build_all_and_run.sh "-- -h"`
|
* `cd neveko && ./scripts/build_all_and_run.sh "-- -h"`
|
||||||
* Example to start neveko with remote stagenet node / i2p proxy remote for development:
|
* Example to start neveko with remote stagenet node / i2p proxy remote for development:
|
||||||
* `./scripts/build_all_and_run.sh "-- --monero-location monero-x86_64-linux-gnu-v0.18.3.1 --monero-rpc-host http://127.0.0.1:38083 --monero-rpc-daemon http://xmr3kaacphwkk4z2gp35bdl47lrrnzimmyqj4oliauqrjzqecofa.b32.i2p:38081 --monero-rpc-username user --monero-rpc-cred pass --remote-node --i2p-advanced --i2p-tunnels-json /home/user/neveko/i2p-manual/config --i2p-proxy-host http://x.x.x.x:xxxx --i2p-socks-proxy-host http://x.x.x.x:xxxx"`
|
* `./scripts/build_all_and_run.sh "-- --monero-location monero-x86_64-linux-gnu-v0.18.3.3 --monero-rpc-host http://127.0.0.1:38083 --monero-rpc-daemon http://xmr3kaacphwkk4z2gp35bdl47lrrnzimmyqj4oliauqrjzqecofa.b32.i2p:38081 --monero-rpc-username user --monero-rpc-cred pass --remote-node --i2p-advanced --i2p-tunnels-json /home/user/neveko/i2p-manual/config --i2p-proxy-host http://x.x.x.x:xxxx --i2p-socks-proxy-host http://x.x.x.x:xxxx"`
|
||||||
* the `--monero-location` flag is needed even when using a remote node because
|
* the `--monero-location` flag is needed even when using a remote node because
|
||||||
neveko has its own monero-wallet-rpc instance
|
neveko has its own monero-wallet-rpc instance
|
||||||
* remote nodes are forced over the `--i2p-proxy-host`
|
* remote nodes are forced over the `--i2p-proxy-host`
|
||||||
* Recommended neveko-core startup with full node and i2p-zero locally running:
|
* Recommended neveko-core startup with full node and i2p-zero locally running:
|
||||||
* ` ./scripts/build_all_and_run.sh "-- --monero-blockchain-dir=/home/user/.bitmonero --monero-location monero-x86_64-linux-gnu-v0.18.3.1 --i2p-zero-dir /home/user/i2p-zero-linux.v1.21/ --monero-blockchain-dir /home/user/.bitmonero"`
|
* ` ./scripts/build_all_and_run.sh "-- --monero-blockchain-dir=/home/user/.bitmonero --monero-location monero-x86_64-linux-gnu-v0.18.3.3 --i2p-zero-dir /home/user/i2p-zero-linux.v1.21/ --monero-blockchain-dir /home/user/.bitmonero"`
|
||||||
* monerod doesn't need to be running because neveko will start it and monero-wallet-rpc
|
* monerod doesn't need to be running because neveko will start it and monero-wallet-rpc
|
||||||
* gui will automatically detect monerod, rpc and i2p-zero if neveko core is started first
|
* gui will automatically detect monerod, rpc and i2p-zero if neveko core is started first
|
||||||
* Neveko doesn't write logs to file. Use the command below to write to a log file:
|
* Neveko doesn't write logs to file. Use the command below to write to a log file:
|
||||||
|
|
|
@ -17,7 +17,7 @@ pub struct Args {
|
||||||
#[arg(
|
#[arg(
|
||||||
long,
|
long,
|
||||||
help = "Monero download absolute path.",
|
help = "Monero download absolute path.",
|
||||||
default_value = "monero-x86_64-linux-gnu-v0.18.3.1"
|
default_value = "monero-x86_64-linux-gnu-v0.18.3.3"
|
||||||
)]
|
)]
|
||||||
pub monero_location: String,
|
pub monero_location: String,
|
||||||
/// Monero RPC host
|
/// Monero RPC host
|
||||||
|
|
|
@ -112,7 +112,7 @@ impl Default for Connections {
|
||||||
is_remote_node: false,
|
is_remote_node: false,
|
||||||
is_i2p_advanced: false,
|
is_i2p_advanced: false,
|
||||||
mainnet: false,
|
mainnet: false,
|
||||||
monero_location: String::from("/home/user/monero-x86_64-linux-gnu-v0.18.3.1"),
|
monero_location: String::from("/home/user/monero-x86_64-linux-gnu-v0.18.3.3"),
|
||||||
rpc_credential: String::from("pass"),
|
rpc_credential: String::from("pass"),
|
||||||
rpc_username: String::from("user"),
|
rpc_username: String::from("user"),
|
||||||
rpc_host: String::from("http://127.0.0.1:38083"),
|
rpc_host: String::from("http://127.0.0.1:38083"),
|
||||||
|
|
Loading…
Reference in a new issue