-
Guest68574
Can anyone tell me if it is possible to identify an accounts address if I only have it's subaddress?
-
UkoeHB_
Guest68574: no you can't
-
kayront
hyc: zfs is by far the most comfortable fs i've used. there's nothing else (ok, I haven't looked in awhile) that comes closer in terms of ease of administration and cohesiveness of the tools ime
-
kayront
and in some cases, it's not practical by any reasonable means to dedicate raw storage like you suggested yesterday.. and even when it's possible, it's going to be the exception to the rule, different than how every other piece of the system is setup
-
artefact
is my understanding of --tx-proxy tor,... correct in that it hides your real ip address to other nodes when you make transactions?
-
kayront
i don't claim to understand the technical interns as well as you, but i can give you my point of view from an administration perspective
-
moneromooo
I think so. Only for txes though, not blocks.
-
artefact
alright. i'm not mining so it shouldn't be an issue
-
artefact
wrt my storage issues of yesterday, this morning i plugged an old ssd lying around and formatted it as xfs. works fine now, until it runs out of space (it's only a 120g drive)
-
kayront
you can prune the chain artefact
-
kayront
should keep it manageable for the foreseeable future
-
artefact
might do that when the problem arises. or maybe by that time i'll have a bigger drive also lying around unused :)
-
kayront
<moneromooo> I think so. Only for txes though, not blocks. --> it'd be nice to have an easy, built-in way (bitcoin core can run fully over tor, for example - txs and blocks, and no clearnet comms) to do both
-
moneromooo
Add "torsocks " before your monerod command.
-
moneromooo
See the README.md file, there are a couple extra things IIRC.
-
artefact
i'd rather not do that, to not needlessly use bandwidth of the network. i don't mind my isp knowing that i run a monero node for now
-
kayront
you could also look at it as providing more encrypted traffic as cover artefact
-
artefact
i just don't want my transactions being tied to my real ip address from simple passive sniffing from eg a malicious node in the network
-
kayront
that's a bit dodgy though moneromooo, and torsocks doesn't work in illumos (and hasn't seen updates for years iirc)
-
kayront
and p2p comms will go outside the tor network, into clearweb
-
artefact
i already run a tor bridge, and most of my internet browsing is done over tor. over time this made me hate google and cloudflare with a passion. captcha hell is real, and i'm always in it
-
kayront
in bitcoin core, your p2p peers are other .onions
-
kayront
they really put the effort, i was surprised
-
kayront
even the seed nodes are .onions
-
artefact
how do they advertise the seed nodes? still over irc?
-
kayront
don't remember, it's been running for ages
-
kayront
i think i just copied it from a fragment of config file in some official docs
-
kayront
your own node is also an .onion, so it can receive incoming connections over tor also. pretty neat
-
moneromooo
Oh yes, fuck cloudflare a lot.
-
kayront
lol don't even tell me
-
moneromooo
One side of the mouth says "We don't block tor", the other says "but we've made it easy for you guys to turn it on".
-
kayront
and the google captcha just says "your computer is bad mmkay" AFTER you try to solve the captcha like 90% of the time nowdays
-
artefact
“please wait while we pretend to check your browser until you're pissed enough to close the tab”
-
kayront
i just reflexively close the tab when i see "Attention required!" now, and think no more of it
-
moneromooo
Ah yes, that's just so fucking dishonest.
-
kayront
i'm captcha-tized
-
kayront
yeah
-
kayront
feed and train their AI
-
kayront
now GTFO
-
kayront
bastards :D
-
moneromooo
I still dream of my next project somehow fucking cloudflare over.
-
moneromooo
It must be completely pwned by a dozen intel agencies too. All this juicy data.
-
kayront
yeah
-
artefact
“yes we're mitm, but trust us, we're good guys”
-
kayront
and the funny thing is, many crypto exchanges use it
-
kayront
such secure, yes yes, we just pipe all your data through an US company, don't worry!
-
gingeropolous
CDN on the blockchain?
-
gingeropolous
i mean, isn't IPFS kind of a CDN?
-
gingeropolous
but oh.... banana co..... we really love you and need you.......
-
asymptotically
noooo don't create a p2p cdn. you are taking food out of the buttflare developer's mouths
-
gingeropolous
but oh...... she said no go..... she says if you die then we all do..... but.... everythings burning down............ we gotta bring it back some HOW......... yeah yeah........
-
gingeropolous
-
gingeropolous
so many guitars
-
artefact
"wait should have been called before waiter dtor - waiting now"
paste.debian.net/plainh/a4e023c3 is this supposed to happen? looks abnormal
-
artefact
monerod seems to hang after that
-
moneromooo
It is not normal. gdb into the process (gdb /path/to/monerod `pidof monerod`), then: thread apply all bt
-
artefact
looks like c++ mangled mess to me. want me to paste it i suppose?
-
artefact
-
moneromooo
Did you mine very recently on that daemon ?
-
artefact
never mined at all on that daemon, no
-
moneromooo
It bugs me that all the rx_slow_hash calls are waiting in a lock.
-
moneromooo
I just double checked the locking, it seems ok, unless exception in librandomx, but rx-slow-hash.c is C so would blow up if an exception was going through it...
-
artefact
unless monerod mines by default and i forgot to disable it?
-
moneromooo
Only if your wallet is set to ask it to background mine.
-
moneromooo
You'd see it on the monerod console.
-
artefact
i'm not running any wallet
-
moneromooo
Anyway, that trace is possibly wrong. Is it a one off or did you have it more than once ?
-
artefact
it's a one off. i tried restarting the daemon once but it immediately gets stuck like this
-
artefact
let me retry
-
moneromooo
Oh, excellent!
-
moneromooo
Then you can build with -g -O0 and we'll get a nice trace.
-
moneromooo
(make debug)
-
artefact
okay, hang on
-
artefact
i'm running into Unknown CMake command "check_c_compiler_flag" ? i have cmake 3.18.0
-
artefact
hang on, this will take a while
-
artefact
-
moneromooo
That's a weird trace for debug.
-
artefact
let me try a build with gcc
-
moneromooo
You might as well build with -DSANITIZE=ON. Something seems really borked here.
-
Quotes
-
moneromooo
(make fuzz will set this)
-
artefact
make fuzz ate all my ram and all my swap. time for -j1
-
moneromooo
Once cmake's done, you can ^C and make -C build/Linux/master/fuzz daemon
-
moneromooo
That'll build just the daemon.
-
moneromooo
(and deps)
-
artefact
oh thanks, that'll help a lot
-
artefact
-
artefact
its probably just my h/w, i'll run some mprime/memtest tonight
-
artefact
starting from a blank db gets it running again... i just lose 75gb of progress and risk running in the same issue in two days
-
moneromooo
Ah, that one's known to trigger asan, but it's fine. Simple fix, define VALGRIND on top of the file IIRC.
-
moneromooo
Yes, #define VALGRIND 1 top of the file will fix.
-
artefact
unbound/util/storage/lookup3.c ?
-
moneromooo
Yes.
-
artefact
thanks for the help
-
artefact
interesting, now it's syncing, but still throwing a lot of runtime errors in the log every time it does
-
artefact
-
artefact
could it just be caused by a corrupted db?
-
moneromooo
That seems fine AFAICT. You're saying it's syncing.
-
artefact
very slowly, yes
-
artefact
got the vanilla monerod to behave the same as the fuzz now, the problem was systemd's MemoryDenyWriteExecute=true
-
artefact
sorry for wasting lots of time. syncs but still lots of runtime errors every time a sync message is printed
-
moneromooo
Ah, explains why it broke in randomx then.
-
moneromooo
I wonder why systemd messes with that. Not its damn business,
-
moneromooo
It's like it wants to be a kernel but can't do the work.
-
moneromooo
Well, you still had a lockup originally. That doesn't get explained by this particular systemd fuckery.
-
moneromooo
If the slowdown isn't too unbearable, please try to conitnue using that build in case it happens again :)
-
moneromooo
Actually, ASAN was for the randomx thing, which we now know is systemd's fault. So switching back to debug now is fine to get the speed back.
-
artefact
right, i'll keep running the debug daemon
-
artefact
paste.debian.net/plainh/e3a465cc ok i give up, i know this has to be user error, and the error is getting fed up now :-)
-
moneromooo
ugh, definitely not what I expect of a debug build.
-
moneromooo
ASAN would have triggered on that most likely.
-
derpy_bridge_
<[discord] Yonatan#6948>: I feel a bit dumb
-
derpy_bridge_
<[discord] Yonatan#6948>: But
-
derpy_bridge_
<[discord] Yonatan#6948>: How do I connect to my local node from another PC?
-
derpy_bridge_
<[discord] Yonatan#6948>: Is it localhost:18081
-
derpy_bridge_
<[discord] Yonatan#6948>: Or is it something else?
-
moneromooo
x:18081, with x being the IP assigned to your network card if it's on the same network, or whatever IP gets to your router and your computer, if outside.
-
derpy_bridge_
<[discord] Yonatan#6948>: You mean localip:18081?
-
derpy_bridge_
<[discord] Yonatan#6948>: I’ll just try both
-
moneromooo
x was a symbolic variable, any would do.
-
moneromooo
"local" hints you mean "the IP assigned to your network card if it's on the same network".
-
moneromooo
If the other computer is on the same LAN, then yes, that.
-
derpy_bridge_
<[discord] Yonatan#6948>: Ok
-
derpy_bridge_
<[discord] Yonatan#6948>: I’m currently synced 71%
-
derpy_bridge_
<[discord] Yonatan#6948>: I have like 40 gigs left I think
-
derpy_bridge_
<[discord] Yonatan#6948>: Is it normal that the last 2% of syncing is going hella slow
-
derpy_bridge_
<[discord] Yonatan#6948>: ?
-
moneromooo
Yes.
-
derpy_bridge_
<[discord] Yonatan#6948>: Oof
-
derpy_bridge_
<[discord] Yonatan#6948>: How long should it take
-
moneromooo
Longer than you'd like.
-
derpy_bridge_
<[discord] Yonatan#6948>: It took approx 3 hours for it to get to 98%
-
derpy_bridge_
<[discord] Yonatan#6948>: Why is that happening?
-
moneromooo
It verifies everyhting (including PoW). PoW is skipped when a set of block hashes matches known good blocks.
-
moneromooo
But that's only the case for the first... 98% of the chain apparently.
-
derpy_bridge_
<[discord] Yonatan#6948>: Das not fun
-
artefact
(98%, 28638 left, 1% of total synced, estimated 4.2 hours left) for me
-
moneromooo
FWIW, there's a PR that's about to be merged which has known good hashes for more blocks.
-
moneromooo
So building with this will get you the fast version for 1.5% more or so I expect.
-
artefact
what's four more hours. i'm not in a rush
-
artefact
first 98% took me about two days already
-
moneromooo
:|
-
moneromooo
Spinning HDD ?
-
artefact
at first yes, but also slow-ish internet
-
derpy_bridge_
<[discord] Yonatan#6948>: Oof
-
derpy_bridge_
<[discord] Yonatan#6948>: I’m download on an NVME
-
derpy_bridge_
<[discord] Yonatan#6948>: Took about 3 hours for 98%
-
derpy_bridge_
<[discord] Yonatan#6948>: I feel bad for ya bro
-
derpy_bridge_
<[discord] Yonatan#6948>: I’m on an NVME
-
derpy_bridge_
<[discord] Yonatan#6948>: (edited)
-
Mochi101
Even 10 hours for a full sync is not really that bad.
-
Mochi101
Kids these days and their instant gratification.
-
» Mochi101 makes 9600 baud modem handshake noises.
-
» artefact makes tape drive noises
-
Mochi101
nickname checks out
-
kayront
hah
-
derpy_bridge_
<[discord] Yonatan#6948>: 10k blocks remaining
-
derpy_bridge_
<[discord] Yonatan#6948>: 8k
-
kayront
-
kayront
when monroe?
-
derpy_bridge_
<[discord] Yonatan#6948>: melon musk
-
derpy_bridge_
<[discord] Yonatan#6948>: 6.5k block remaining
-
derpy_bridge_
<[discord] Yonatan#6948>: 1k remaining
-
derpy_bridge_
<[discord] Yonatan#6948>: Why can’t I connect to my node?
-
derpy_bridge_
<[discord] Yonatan#6948>: I connect to 127.0.0.1:18081 but nothing
-
derpy_bridge_
<[discord] Yonatan#6948>: Also tried 18080
-
derpy_bridge_
<[discord] Yonatan#6948>: Someone?
-
asymptotically
did you set --rpc-bind-ip?
-
derpy_bridge_
<[discord] Yonatan#6948>: With what args?
-
asymptotically
with any args. if you picked the address of another interface like 192.168.1.23, it won't be listening at 127.0.0.1 anymore
-
derpy_bridge_
<[discord] Yonatan#6948>: When I put the ip of my interface it says invalid ip
-
asymptotically
do you see the ip in the output of the `ip address` command?
-
derpy_bridge_
<[discord] Yonatan#6948>: Never mind
-
derpy_bridge_
<[discord] Yonatan#6948>: I had to overwrite it with —confirm-external-bind
-
derpy_bridge_
<[discord] Yonatan#6948>: Now it works
-
asymptotically
hurray :D
-
derpy_bridge_
<[discord] Yonatan#6948>: Surprisingly it took less than 6 hours for the full blockchain to download
-
derpy_bridge_
<[discord] Yonatan#6948>: It was worth getting an NVME
-
sethsimmons
No kidding lol
-
sethsimmons
Crazy how fast IBD is with an SSD
-
sethsimmons
IOPS/random RW is huge for blockchains
-
derpy_bridge_
<[discord] Yonatan#6948>: The node is raping my cores though
-
derpy_bridge_
<[discord] Yonatan#6948>: For some reason
-
sethsimmons
After IBD is done?
-
sethsimmons
I’ve never seen that
-
sethsimmons
And mine is a public node w/ restricted RPC that sees pretty heavy usage
-
amkyp[m]
guys anyone have experience with minergate pools?
-
amkyp[m]
any one can help me with that?
-
amkyp[m]
it's not responding `xmr.pool.minergate.com:45700`
-
manifest
#monero-pools for mining stuff
-
moneromooo
Though you could just avoid minergate, they're scammers.
-
manifest
there's that also
-
amkyp[m]
😐️
-
amkyp[m]
<manifest "#monero-pools for mining stuff"> So, where should invest for mining?
-
niocbrrrrrr
amkyp[m]: minergate is a scam, they still ~30% of your hashes
-
amkyp[m]
WTF 😐️
-
amkyp[m]
I never knew that 😐️
-
niocbrrrrrr
use xmrig software and then choose a pool from their wizard
-
moneromooo
Not one of the two biggest ones if you can.
-
niocbrrrrrr
minergate is easy to use
-
niocbrrrrrr
but you pay dearly for it
-
artefact
even the name is suspicious
-
ndorf
i use moneroocean, am satisfied
-
amkyp[m]
tnx guys, I appreciate your help.
-
artefact
i don't mine :-( not profitable for me, by faaaaar
-
niocbrrrrrr
the 2 biggest pools are supportxmr and minexmx so as moneromooo said best to avoid them
-
niocbrrrrrr
*minexmr
-
manifest
if i had free electricity, maan
-
amkyp[m]
<ndorf "i use moneroocean, am satisfied"> So, now I can go with this one via xmrig?
-
artefact
go to their site, follow instructions. it's that simple
-
amkyp[m]
I wish I had never mined there ☹️
-
moneromooo
What we need is a big "list of scammy shit" for newbies. List Minergate, craight wright's fork, dash, bytecoin, all that shit that newbies have no clue about.
-
ndorf
amkyp[m]: go to
moneroocean.stream and select "Show Miner Setup Scripts". then just copy paste the command
-
artefact
it's scary how easily people fall for hyped snake oil
-
niocbrrrrrr
top of this room says don't use minergate
-
niocbrrrrrr
DON'T USE Changelly, Freewallet or Minergate:
reddit.com/r/monero/wiki/avoid
-
niocbrrrrrr
might get hidden unless you expand the title
-
amkyp[m]
<ndorf "amkyp: go to
moneroocean"> So now I need to get a new wallet via `getmonero.org` and connect it `XMRig` using `moneroocean.stream pool`.
-
amkyp[m]
`./xmrig: error while loading shared libraries: libhwloc.so.15: cannot open shared object file: No such file or directory`
-
amkyp[m]
any Idea what should I do with this Error 🤔
-
manifest
you have it installed or
-
manifest
there are a few related issues in the github,
xmrig/xmrig #1159
-
amkyp[m]
<manifest "you have it installed or"> It's an executable file.
-
manifest
libhwloc an executable file?
-
amkyp[m]
No the `xmrig`
-
manifest
sure, and it depends on libhwloc. you have it installed?
-
amkyp[m]
<manifest "sure, and it depends on libhwloc"> `apt install libhwloc5`
-
manifest
seems appropriate, not sure about the version number but it def needs to be installed
-
mmxxx[m]
are there any working public monero nodes?
-
mmxxx[m]
*tor nodes
-
amkyp[m]
<manifest "seems appropriate, not sure abou"> Ok, I've done everything, but how should I know how much is my balance, getMoneroApp shows 0!
-
hyc
fun fact: total txn fees on the blockchain in 2019 are 16x smaller than in 2018
-
hyc
1029.8xmr in 2019, 16130.3xmr in 2018
-
niocbrrrrrr
I imagine 2019 had a significantly higher # of txs
-
hyc
higher, yes. 2198414 txns in 2019, 1610294 in 2018
-
moneromooo
BPs got enabled in late 2018.
-
hyc
yeah, figured that was it
-
hyc
hmm, I thought Russia was big on using cryptocurrency
twitter.com/BTC_Obsessions/status/1289694007845519360
-
hyc
Putin has now signed a law saying that crypto is property, not money, and can't be used to pay for goods and services
-
niocbrrrrrr
guess it's not centralized enough for him
-
hyc
hm. or maybe too centralized under someone else's control, e.g. China