-
m-relay
<kei0301:matrix.org> hello
-
m-relay
<kei0301:matrix.org> I`d like to mint new token on monero
-
m-relay
<kei0301:matrix.org> who can help me?
-
Inge
nobody can help you kei0301
-
Inge
wrong channel, and probably wrong token - this is for monero development. Also, Monero does not support minting of tokens on it. It tries to be one thing only - the best electronic cash in existence.
-
euri10
greetings, i'm running several nodes in regtest mode, some are mining and even with --log-level 0 on the daemon i get filled fast with Info Found block messages. I see there is a rpc command /set_log_categories I could use but I fail at getting the category I should use
-
moneromooo
If you look at the log file, you'll see which category each message is for.
-
moneromooo
Here, it's probably "blockchain".
-
moneromooo
I looked, it's "miner".
-
moneromooo
So, add: ,miner:ERROR
-
moneromooo
Or: ,miner:WARNING
-
euri10
that works fine, thanks :)
-
m-relay
<sneedlewoods_xmr:matrix.org> testing the new background-sync PRs from jberman
-
m-relay
<sneedlewoods_xmr:matrix.org> for
monero-project/monero #8619 I used the following commands and were able to build:
-
m-relay
<sneedlewoods_xmr:matrix.org> `git fetch origin pull/8619/head:background-sync-master`
-
m-relay
<sneedlewoods_xmr:matrix.org> `git checkout background-sync-master`
-
m-relay
<sneedlewoods_xmr:matrix.org> `make release`
-
m-relay
<sneedlewoods_xmr:matrix.org> when trying the same for
monero-project/monero-gui #4050
-
m-relay
<sneedlewoods_xmr:matrix.org> but instead of `make release` I run the following:
-
m-relay
<sneedlewoods_xmr:matrix.org> `docker run --rm -it -v <MONERO_GUI_DIR_FULL_PATH>:/monero-gui -w /monero-gui monero:build-env-linux sh -c 'make release-static -j4'`
-
m-relay
<sneedlewoods_xmr:matrix.org> I get the same error as in github build
github.com/monero-project/monero-gu…/6898415064/job/18768379159?pr=4050
-
m-relay
<sneedlewoods_xmr:matrix.org> `src/libwalletqt/Wallet.h:116:41: error: 'BackgroundSync_Off' is not a member of 'Monero::Wallet'`
-
m-relay
<sneedlewoods_xmr:matrix.org> and same for `BackgroundSync_ReusePassword` and `BackgroundSync_CustomPassword`
-
m-relay
<sneedlewoods_xmr:matrix.org> what am I missing to be able to build this PR for GUI?
-
selsta
sneedlewoods_xmr: you have to update the monero submodule to include 8619
-
m-relay
<sneedlewoods_xmr:matrix.org> Thanks, that makes sense, can you tell me what the command would look like? I only find info on how to get the latest submodule but not how to get a specific PR to the submodule
-
m-relay
<sneedlewoods_xmr:matrix.org> do I just have to cd into monero-gui/monero and fetch like I did!?
-
selsta
I don't know how to use manual submodule in combination with docker
-
selsta
"do I just have to cd into monero-gui/monero and fetch like I did!?" <-- yes and then `MANUAL_SUBMODULES=1 make` to compile monero-gui
-
andrey8ezkaro
Hello everyone, I'm trying to setup customizable(mean like testnet=1 options) full node and wallet on VPS. Is there a step-by-step guide how do it in the most convinient way? It's pretty hard to start the process in compliance with all possible conditions
-
gingeropolous
heya andrey8ezkaro , best to move this to #monero
-
m-relay
<sneedlewoods_xmr:matrix.org> thank you selsta, got it to built