00:54:58 hey happy 6 yrs all. sorry i wasn't able to participant in any digital shenanigans. 00:55:13 digigans. diginanigans 01:29:04 hey hyc, thanks. good to be back on irc. 01:29:12 why? 01:30:38 Soz guzzi, just woke up on the wrong side today and can't figure out why my lan keeps sporatically disconnecting 01:49:02 wb guzzi 03:33:32 thanks camthegeek 17:10:19 Moneroversary feedback requested: https://www.reddit.com/r/Monero/comments/g4b7l7/moneorversary_feedback_requested/ 17:12:14 Hey guys, quick question. I'm writing an application and I am running monero daemon / rpc on my host machine but my code is on a virtualbox VM. So how do I connect to the wallet RPC from my code $walletRPC = new walletRPC('host, '28083'); do I just use the IP of my computer? 17:19:17 Your VMM probably exposes the VM's NIC on a local IP, like 192.168.x.y, or 10.x.y.z. 17:19:21 Try ifconfig -a 18:19:19 !torrent 18:19:19 yanmaani: magnet:?xt=urn:btih:2fa0ac731b9e483c2534a9fcf1e3312f39dd7a76&dn=monero-all-v0.15.0.1&tr=http0x0p+00.0000000.000000tracker.opentrackr.org0x0p+013370.000000announce 19:17:59 what is that torrent yanmaani ? 19:18:15 blockchaint ? 19:18:17 source code ? 19:20:23 monero-all-v0.15.0.1 binaries. 19:25:30 !verify 19:25:30 d4ndo[m]: gpg --verify hashes.txt && head -n-13 hashes.txt | tail -n+9 | sed -e '/^$/d' -e 's/^\(.*\),\(.*$\)/\2 \1/g' | sha256sum -c - 19:31:13 What's the name of the Monero website channel? 19:34:38 I don't think there is a seperate irc channel for the monero website. 19:35:04 You can report an issue here: https://github.com/monero-project/monero-site 19:36:16 Which channel would be best to ask a question about website dev? I've run into a problem locally 19:36:37 OsrsNeedsF2P: #monero-site 19:36:41 Thanks :) 19:37:19 Ahh ok 19:39:20 apparently there was an issue early today https://old.reddit.com/r/xmrtrader/comments/g441pp/daily_discussion_sunday_april_19th/fnwcjmp/ 19:46:15 Is it possible to run the monero daemon and rpc process on my local machine and then connect to it in my application code from a virtualbox vm ? 19:47:22 torrit_admin: yes, it just depends how you set up the networking in your virtualbox vm 19:47:40 and you need to make sure that the monero daemon and wallet rpc are listening on the right interface on your host machine too 19:51:00 asymptotically Thanks, I have the network type on my vm set to bridged adapter. When I start up the daemon and rpc process do i need to specify rpc-bind-ip ? 19:51:50 yes. you could try putting in your LAN ip address or just 0.0.0.0 19:52:43 would my LAN address be en0 when I type in ifconfig on my host machine 19:52:57 OsrsNeedsF2P, I tried to donate all my Monero (on the Reddit Monero Tips Bot) to the CCS so I used the 100% command and the bot tells me I don't have enough money. 19:54:11 torrit_admin: sounds right to me :) 19:56:42 Mochi101 Interesting - did you make any tips/withdrawals prior to doing that command? It's possible you had return change coming back. Sounds like an issue with how the bot determines your balance though, I'll have to look into it O_O 19:57:57 No, I've never made any txs for a long time. 19:58:17 Very interesting - when did this happen? 19:58:22 Probably not taking into consideration the fee 19:58:31 like... 45mins-1 hour ago 19:58:43 With 100% probably best to do a sweep_all 19:58:50 no calc necessary 19:59:10 asymptotically Thanks! do you mind if I show you the commands I'm using? I can't seem to start the rpc process. It says no conneciton to daemon. Here is my daemon command "./monerod --testnet --rpc-bind-ip 192.168.1.107 --confirm-external-bind" and here is the rpc command "./monero-wallet-rpc --testnet --rpc-bind-port 28081 --rpc-bind-ip 19:59:10 192.168.1.107 --wallet-file torrit --prompt-for-password" 19:59:13 Actually it does do sweep_all. HM. When did you receive the Monero you have in your wallet? 19:59:28 months and months ago 19:59:38 asymptotically thanks for all your help already, just figured I'd show you what I was doing 19:59:52 torrit_admin: they are both running on your host/the same machine? 19:59:59 Yes 20:01:38 you can try `--daemon-host 192.168.1.107` at the end of your wallet rpc command. since it defaults to localhost, but your daemon isnt listening there anymore 20:01:41 28081 for port? 20:05:43 Mochi101 thx for the report. Gonna try and figure it out :) 20:26:04 torrit_admin: If you have ssh working you could start ./monerod --testnet and then on the client side start ssh -nNT -L 28081:192.168.1.107:28081 userl⊙111 . then just run ./monero-wallet-rpc --testnet 20:28:30 Sorry i messed it up is is "ssh -nNT -L 28081:127.0.0.1:28081 userl⊙111" 20:29:43 A port forward of port 28081 from localhost to 192.168.1.107 piped through ssh. 20:31:46 You dont want 28081 to be an open port on the internet. ssh is hardend. 20:33:19 but this is a local lan so it does not realy matter. 20:41:05 d4ndo[m] hmm true. I'm going to try that now 20:43:01 torrit_admin: Let me know if it worked. 21:26:43 sorry for my ignorance but was this line exactly do 21:26:45 const size_t num_mainnet_hard_forks = sizeof(mainnet_hard_forks) / sizeof(mainnet_hard_forks[0]); 21:28:13 It gets you the number of elements in mainnet_hard_forks. 21:30:39 for my example(i need only v12) must be 1 ? 21:30:45 i have only v12 21:31:41 If you start at v12, it'll probably be just one element, yes. 22:07:03 this DEFAULT_ORIGINAL_VERSION_TILL_HEIGHT for v12 must be some block number? 22:56:04 I don't think it's actually used, it's just a default. 22:56:13 But never defaulted to in practice. 22:56:47 yep i test it even this but nothing changed 22:57:47 i have change and test all major_version on basic.h original_version on hardfork.h 0c on begining of genesis but still nothing! 22:58:20 allways has old version: 12 current: 12 23:11:07 any thoughts on http://paste.debian.net/1141449/ 23:30:22 with catch throw gdb stops and exit! 23:32:16 !m_hardfork->check(bl) why is not 23:32:27 why in my case is ! 23:51:32 I just looked at the code, and there seems to be two checks (in do_check_for_height) that could fail. Did you log the values ? 23:59:29 νο 23:59:32 no 23:59:55 how to log? on gdb?