1 2018-03-18 02:43:51	0|bitcoin-git|[13bitcoin] 15eklitzke opened pull request #12713: Fix unintuitive boolean option parsing behavior (06master...06bool-option-parsing) 02https://github.com/bitcoin/bitcoin/pull/12713
 2 2018-03-18 03:23:40	0|bitcoin-git|[13bitcoin] 15sipa opened pull request #12714: Introduce interface for signing providers (06master...06201803_signingprovider) 02https://github.com/bitcoin/bitcoin/pull/12714
 3 2018-03-18 10:47:16	0|bitcoin-git|[13bitcoin] 15hkjn opened pull request #12715: depends: Add 'make clean' rule (06master...06clean-depends) 02https://github.com/bitcoin/bitcoin/pull/12715
 4 2018-03-18 12:53:51	0|VictorTrueBitcoi|hello people, please help, I have bitcoincore wallet, 4 days ago my password is worked, now i can't sent bitcoins from wallet, password is wrong, what's heppens? please help, there all my money
 5 2018-03-18 12:54:40	0|VictorTrueBitcoi|I no change my password
 6 2018-03-18 12:54:51	0|meshcollider|VictorTrueBitcoi: this is not the right place, this is a channel for the development of bitcoin core not for support
 7 2018-03-18 12:54:59	0|meshcollider|Try #bitcoin or bitcoin.stackexchange.com
 8 2018-03-18 12:55:57	0|VictorTrueBitcoi|ok thanks you, but i just don't know where find help
 9 2018-03-18 13:47:57	0|bitcoin-git|[13bitcoin] 15MarcoFalke reopened pull request #12510: test: Add rpc_bind test to default-run tests (06master...062018_02_reinstate_rpcbind_test) 02https://github.com/bitcoin/bitcoin/pull/12510
10 2018-03-18 14:29:20	0|bitcoin-git|[13bitcoin] 15rex4539 opened pull request #12716: Fix typos and cleanup in various files (06master...06fix-typos) 02https://github.com/bitcoin/bitcoin/pull/12716
11 2018-03-18 14:30:25	0|bitcoin-git|[13bitcoin] 15rex4539 closed pull request #12593: Fix typos and cleanup in various files (06master...06rex4539-typos) 02https://github.com/bitcoin/bitcoin/pull/12593
12 2018-03-18 15:30:35	0|Lis|Hey guys, anyone can help with picking up an issue to work on?
13 2018-03-18 15:31:12	0|Lis|I looked at "good first issue"s but everything seems to be taken
14 2018-03-18 15:33:23	0|stevenroose|What's the constraining factor for Core initial sync? CPU? How long does it take with a fast network, fast SSD, lots (32GiB) of RAM on a i7 machine?
15 2018-03-18 15:42:11	0|eklitzke|a few hours in that case
16 2018-03-18 15:42:39	0|eklitzke|if you have an ssd you are probably cpu constrained (assuming you're not bandwidth constrainted)
17 2018-03-18 15:43:30	0|eklitzke|if you already have the whole chain synced a reasonable way to simulate sync is doing -reindex or -reindex-chainstate
18 2018-03-18 15:46:03	0|eklitzke|if you have a really fast computer we could do a better job of cpu parallelism to bring that down further
19 2018-03-18 15:59:48	0|stevenroose|eklitzke: hmm, that's quite fast. How is the UTXO set built? in-memory?
20 2018-03-18 16:15:33	0|eklitzke|it's kind of complicated
21 2018-03-18 16:15:45	0|eklitzke|recent coins go in an in-memory cache
22 2018-03-18 16:15:52	0|eklitzke|that's the main thing that dbcache controls
23 2018-03-18 16:16:12	0|eklitzke|leveldb has another cache layer that isn't really used by bitcoin
24 2018-03-18 16:16:20	0|eklitzke|on a unix system the leveldb files will be mmaped
25 2018-03-18 16:16:28	0|eklitzke|meaning that the data will end up in the kernel page cache
26 2018-03-18 16:16:58	0|eklitzke|but even if the data is in the page cache, it will be encoded in a leveldb format so it has to be decoded when accessing the page cache
27 2018-03-18 16:18:20	0|eklitzke|this is what i am working on right now, i have some changes queued up to improve some of this stuff but need to get my existing PRs through first
28 2018-03-18 16:37:32	0|bitcoin-git|[13bitcoin] 15romanz opened pull request #12717: Handle UTXO retrieval when ignoring the mempool (06master...06master) 02https://github.com/bitcoin/bitcoin/pull/12717
29 2018-03-18 17:03:57	0|bitcoin-git|[13bitcoin] 15MarcoFalke opened pull request #12718: [Tests] Require exact match in assert_start_raises_init_eror (jnewbery) (06master...06Mf1803-qaRegexInitError) 02https://github.com/bitcoin/bitcoin/pull/12718
30 2018-03-18 17:53:23	0|VictorTrueBitcoi|devs please help, whats going on with my bitcoin core wallet, i never change pass, and computer without access, and pass wrong, i had bitcoincore 0.15.0.1 after update 0.15.1 pass wass wrong, but few time is working, and now again pass wrong
31 2018-03-18 17:54:05	0|VictorTrueBitcoi|all internet dont know whats going on
32 2018-03-18 18:01:29	0|Satoshi|Good evening gentlemen
33 2018-03-18 18:06:09	0|VictorTrueBitcoi|hello, Satoshi
34 2018-03-18 18:06:57	0|VictorTrueBitcoi|i think my mistic wrong pass, know only devs
35 2018-03-18 18:38:58	0|achow101|VictorTrueBitcoi: no one can help you if you don't know your password. The whole point of having a password and encryption is that other people don't know the password and can't get your private keys
36 2018-03-18 18:39:06	0|achow101|not even devs can help you
37 2018-03-18 18:39:29	0|achow101|anyways, this is not the correct channel for asking for help. Go to #bitcoin, bitcoin.stackexchange.com, or bitcointalk.org
38 2018-03-18 19:47:08	0|Lis|Hey Guys, wanted to ask if there is any reason why the REST API contains only GET methods?
39 2018-03-18 19:47:33	0|Lis|in general it seems to have very poor functionality in comparison with the RPC interface
40 2018-03-18 19:47:59	0|bitcoin-git|[13bitcoin] 15practicalswift opened pull request #12719: tests: Add note about test suite naming convention in developer-notes.md (06master...06consistent-test-naming) 02https://github.com/bitcoin/bitcoin/pull/12719
41 2018-03-18 19:48:19	0|sipa|Lis: well it has a different purpose
42 2018-03-18 19:48:33	0|sipa|the REST interface is unauthenticated, so it's only for public data
43 2018-03-18 19:51:06	0|Lis|Sure makes sense, any plans for authenticated REST API?
44 2018-03-18 20:00:55	0|Babu_|Help
45 2018-03-18 20:01:48	0|Babu_|Dteeg
46 2018-03-18 20:06:09	0|Lis|Would appreciate an opinion about authenticated rest api for bitcoin :)
47 2018-03-18 23:02:11	0|bitcoin-git|[13bitcoin] 15jeffrade opened pull request #12720: Avoiding 'file' function name from python2 (06master...06pr_12437_variable_rename) 02https://github.com/bitcoin/bitcoin/pull/12720