13:19:11 hello 13:21:11 how i can connect a wallet to my node? 13:21:19 gui wallet to my node 13:21:52 i had Some problems at connect, message: Connection refused 13:21:52   Failed to connect to 192.168.1.108:18081 13:22:08 but daemon is working on 192.168.1.108 13:22:18 why is not accepting connections 13:22:23 im in same lan 13:26:05 Did you tell it to listen to your NIC (or to any) rather than the loopback default ? 13:26:14 (using --rpc-bind-ip) 13:27:18 i insert my ip 192.168.1.108 13:28:05 I guess I'll assume it means "yes". Next, remove any firewall on 18081, on both sides. 13:28:25 If you setup SSL, make sure you enable it also on the wallet side. 13:29:04 Check you can ping the monerod host from the wallet host (assuming ICMP is enabled). 13:30:40 yes ping is working 13:31:48 Just to make sure: on the monerod host: netstat -pnat | grep LISTEN 13:31:57 (post to paste.debian.net) 13:33:56 http://paste.debian.net/1237581/ 13:34:31 Your problem is: 13:34:32 < moneromooo> Did you tell it to listen to your NIC (or to any) rather than the loopback default ? 13:34:39 < moneromooo> (using --rpc-bind-ip) 13:35:23 ie, use: --rpc-bind-ip 192.168.1.108 13:35:39 http://paste.debian.net/1237582/ 13:36:14 Add what it tells you to add. It's a sanity check. 13:36:38 (for security) 13:37:02 I assume only you has access to your LAN, but if not you may want to set up a SSL cert and whitelist it. 13:39:30 worked 13:39:37 thank you 13:39:41 np 13:40:31 how to skip all wallet checking 13:40:41 is like downloading again blockchain 13:40:57 wallet syncing 13:41:08 Make a new wallet while the daemon is running, and send all your money to it. 13:41:51 Or just wait. It's faster than chain verification. 13:42:48 If your refresh-from-block-height setting is not set, you can also set if to the time you created the wallet. It'll skip blocks from before that. 13:43:06 Only works if you remember when it was made though, but a lowball guess is fine. 13:43:12 i dont understand why wallet need syncing when u have blockchain downloaded 13:43:22 what syncing means 13:43:27 It looks at what outputs are yours. 13:44:08 ok thereis no way to "grep output" 13:44:19 There is. It's doing it :D 13:44:30 ah 13:44:40 It's not just a text match though, monero is private. The matching involves EC ops. 13:44:58 But in effcet, it's that. For every output, look if it matches your keys. 13:45:00 what is EC 13:45:23 Elliptic curve. The crypto... thing... monero is based on. EC ops are slow. 13:45:45 Slower than strstr, say. 13:45:48 how EC can be read faster 13:45:58 By having a faster computer. 13:46:33 In a few months, there's a new thing called view tags that'll be up and running, wihch will speed this step up. 13:46:48 It won't speed up old (current) blocks, but future blocks. 13:47:12 Can't recall how much faster, it's significant but not blazing. 13:47:32 good 13:47:40 If you know you never mined to that wallet, you can also tell it to skip coinbase: 13:47:49 IIRC: set refresh-coinbase no-coinbase 13:48:18 set refresh-type no-coinbase 13:48:41 It was a pretty good speedup for old blocks, but it'll be less so now that there are a lot more txes. 14:21:55 why now that im trying to connect from localhost is not working 14:22:01 rpc still working 14:32:08 use --rpc-bind-ip 0.0.0.0 14:32:17 That means "any". 14:40:40 ok