Bitcoin Forum
May 04, 2024, 12:34:04 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 [406] 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 ... 486 »
  Print  
Author Topic: [BBR] Boolberry: Privacy and Security - Guaranteed Since 2014  (Read 1210689 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
rbrunner7
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile WWW
August 06, 2017, 03:13:51 PM
 #8101

If anyone wants to test out my latest db code, I have it at https://github.com/clintar/boolberry/tree/lmdb_scratch

you can get the branch with
Code:
git clone -b lmdb_scratch https://github.com/clintar/boolberry.git
then
Code:
mkdir -p build/release; cd build/release
cmake -DDATABASE=lmdb ../..
make -j4 daemon
should compile it, at least in linux. Let me know if it compiles or not at least! Smiley

I tried this branch. It compiled without problems. The produced binary started and created an initial db file of about 1 GB.

There is no file conversion yet from the "old" .bin format to lmdb format, so it wants to sync the blockchain from start, even with a blockchain file within reach, right? At least that was what it did on my system.

Sync immediately ran into problems however. I had repeated messages as follows:

Code:
2017-Aug-06 13:37:10.273809 [P2P3][193.70.85.9:10101 OUT]Block verification failed, dropping connection

These messages come from currency_protocol_handler.inl, line #377 (as checked out from GitHub today):

Code:
        if(bvc.m_verifivation_failed)
        {
          LOG_PRINT_CCONTEXT_L0("Block verification failed, dropping connection");
          m_p2p->drop_connection(context);
          m_p2p->add_ip_fail(context.m_remote_ip);
          return 1;
        }

Sync stuck forever at block 3 with repeated messages like this one:

Code:
2017-Aug-06 13:37:09.362602 [P2P7][193.70.85.9:10101 OUT]Sync data returned unknown top block: 3 -> 840955 [840952 blocks (1167 days) behind]

Is it supposed to be able to sync with "conventional" Boolberry nodes?
1714782844
Hero Member
*
Offline Offline

Posts: 1714782844

View Profile Personal Message (Offline)

Ignore
1714782844
Reply with quote  #2

1714782844
Report to moderator
1714782844
Hero Member
*
Offline Offline

Posts: 1714782844

View Profile Personal Message (Offline)

Ignore
1714782844
Reply with quote  #2

1714782844
Report to moderator
Bitcoin addresses contain a checksum, so it is very unlikely that mistyping an address will cause you to lose money.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714782844
Hero Member
*
Offline Offline

Posts: 1714782844

View Profile Personal Message (Offline)

Ignore
1714782844
Reply with quote  #2

1714782844
Report to moderator
1714782844
Hero Member
*
Offline Offline

Posts: 1714782844

View Profile Personal Message (Offline)

Ignore
1714782844
Reply with quote  #2

1714782844
Report to moderator
1714782844
Hero Member
*
Offline Offline

Posts: 1714782844

View Profile Personal Message (Offline)

Ignore
1714782844
Reply with quote  #2

1714782844
Report to moderator
clintar2
Full Member
***
Offline Offline

Activity: 202
Merit: 104


View Profile
August 06, 2017, 07:05:10 PM
 #8102

If anyone wants to test out my latest db code, I have it at https://github.com/clintar/boolberry/tree/lmdb_scratch

you can get the branch with
Code:
git clone -b lmdb_scratch https://github.com/clintar/boolberry.git
then
Code:
mkdir -p build/release; cd build/release
cmake -DDATABASE=lmdb ../..
make -j4 daemon
should compile it, at least in linux. Let me know if it compiles or not at least! Smiley

I tried this branch. It compiled without problems. The produced binary started and created an initial db file of about 1 GB.

There is no file conversion yet from the "old" .bin format to lmdb format, so it wants to sync the blockchain from start, even with a blockchain file within reach, right? At least that was what it did on my system.

Sync immediately ran into problems however. I had repeated messages as follows:

Code:
2017-Aug-06 13:37:10.273809 [P2P3][193.70.85.9:10101 OUT]Block verification failed, dropping connection

These messages come from currency_protocol_handler.inl, line #377 (as checked out from GitHub today):

Code:
        if(bvc.m_verifivation_failed)
        {
          LOG_PRINT_CCONTEXT_L0("Block verification failed, dropping connection");
          m_p2p->drop_connection(context);
          m_p2p->add_ip_fail(context.m_remote_ip);
          return 1;
        }

Sync stuck forever at block 3 with repeated messages like this one:

Code:
2017-Aug-06 13:37:09.362602 [P2P7][193.70.85.9:10101 OUT]Sync data returned unknown top block: 3 -> 840955 [840952 blocks (1167 days) behind]

Is it supposed to be able to sync with "conventional" Boolberry nodes?
It should, but it's not in a good state. I have some fixes, but it will fall if there is an alt chain. I haven't had a lot of time to debug the problems. You should probably create a different folder for it to keep it's files in and use --data-dir= to point it to that folder. It should at least sync, but don't trust it for anything yet. Hopefully this week I can look more into it.

BTW, did everyone notice the scratchpad got too large again for current miner software? Time to increase those buffers
Molenta
Newbie
*
Offline Offline

Activity: 84
Merit: 0


View Profile
August 08, 2017, 12:51:02 PM
 #8103

Any chance to reveal what can be done in miner to accept bigger scratchpad would be honored or can give me address for 10BBR, am a small miner Smiley
clintar2
Full Member
***
Offline Offline

Activity: 202
Merit: 104


View Profile
August 08, 2017, 01:43:22 PM
 #8104

Any chance to reveal what can be done in miner to accept bigger scratchpad would be honored or can give me address for 10BBR, am a small miner Smiley
Usually if you are compiling from source, the git repo will get updates, so you can just run
Code:
git pull 
to get the changes and run make again, but if you are just using a binary, you'll have to wait for someone to compile a new one. Which miner are you using?
Molenta
Newbie
*
Offline Offline

Activity: 84
Merit: 0


View Profile
August 08, 2017, 01:57:19 PM
 #8105

Any chance to reveal what can be done in miner to accept bigger scratchpad would be honored or can give me address for 10BBR, am a small miner Smiley
Usually if you are compiling from source, the git repo will get updates, so you can just run
Code:
git pull 
to get the changes and run make again, but if you are just using a binary, you'll have to wait for someone to compile a new one. Which miner are you using?

Using minerd (designed for algo wildkeccak_ocl with rx470, win10 64 bit, mining in pool). Where to put code: "git pull" in *.bat file. Please do not forget to paste address where i can send for help.
clintar2
Full Member
***
Offline Offline

Activity: 202
Merit: 104


View Profile
August 08, 2017, 04:40:14 PM
 #8106

Any chance to reveal what can be done in miner to accept bigger scratchpad would be honored or can give me address for 10BBR, am a small miner Smiley
Usually if you are compiling from source, the git repo will get updates, so you can just run
Code:
git pull 
to get the changes and run make again, but if you are just using a binary, you'll have to wait for someone to compile a new one. Which miner are you using?

Using minerd (designed for algo wildkeccak_ocl with rx470, win10 64 bit, mining in pool). Where to put code: "git pull" in *.bat file. Please do not forget to paste address where i can send for help.
If it's a windows machine, I think you should be ok just downloading this latest miner. Looks like it has a scratchpad setting large enough. https://github.com/mbkuperman/cpuminer-multi-opencl/releases
The Cryptophilanthropist
Full Member
***
Offline Offline

Activity: 231
Merit: 101



View Profile
August 09, 2017, 03:37:54 AM
Last edit: August 09, 2017, 03:52:22 AM by The Cryptophilanthropist
 #8107

Is the wallet link in the OP (windows binaries) the correct current wallet download?

Also please the links for an Nvidia GPU miner?

I would like to mine at one of the pools, any suggestion anyone?

L8nit3-Miners Multi-Pool BTC PRT-LOG-XGTC BTC #GetMining
GdonateqfnmiJKv7mfnUcyvZHaiqxcTQS1 - XGTC DEV FUND
1G2PTf59cYsWKoZjj3i3Cv1Bb8NuNaeho2 - BTC POOL DEV
clintar2
Full Member
***
Offline Offline

Activity: 202
Merit: 104


View Profile
August 09, 2017, 10:22:01 PM
 #8108

Is the wallet link in the OP (windows binaries) the correct current wallet download?

Also please the links for an Nvidia GPU miner?

I would like to mine at one of the pools, any suggestion anyone?
Epsylon/tpruvot's is probably the best for nvidia. https://github.com/tpruvot/ccminer , but he hasn't made a binary release with the larger scratchpad. I will try to get a binary created, or you can try the opencl one i mentioned a few posts ago, https://github.com/mbkuperman/cpuminer-multi-opencl/releases until then. As far as pools, I'm partial to my own http://mining.blue Grin, but here is a list of all the pools I know about. http://explorer.mining.blue/en/#pools
The Cryptophilanthropist
Full Member
***
Offline Offline

Activity: 231
Merit: 101



View Profile
August 10, 2017, 01:30:55 PM
 #8109

Is the wallet link in the OP (windows binaries) the correct current wallet download?

Also please the links for an Nvidia GPU miner?

I would like to mine at one of the pools, any suggestion anyone?
Epsylon/tpruvot's is probably the best for nvidia. https://github.com/tpruvot/ccminer , but he hasn't made a binary release with the larger scratchpad. I will try to get a binary created, or you can try the opencl one i mentioned a few posts ago, https://github.com/mbkuperman/cpuminer-multi-opencl/releases until then. As far as pools, I'm partial to my own http://mining.blue Grin, but here is a list of all the pools I know about. http://explorer.mining.blue/en/#pools

Thank you very much for the info, yes a Win binary would be great! And regarding the OP wallet links, are those correct??

L8nit3-Miners Multi-Pool BTC PRT-LOG-XGTC BTC #GetMining
GdonateqfnmiJKv7mfnUcyvZHaiqxcTQS1 - XGTC DEV FUND
1G2PTf59cYsWKoZjj3i3Cv1Bb8NuNaeho2 - BTC POOL DEV
clintar2
Full Member
***
Offline Offline

Activity: 202
Merit: 104


View Profile
August 10, 2017, 01:36:27 PM
Last edit: August 10, 2017, 06:46:04 PM by clintar2
 #8110

Is the wallet link in the OP (windows binaries) the correct current wallet download?

Also please the links for an Nvidia GPU miner?

I would like to mine at one of the pools, any suggestion anyone?
Epsylon/tpruvot's is probably the best for nvidia. https://github.com/tpruvot/ccminer , but he hasn't made a binary release with the larger scratchpad. I will try to get a binary created, or you can try the opencl one i mentioned a few posts ago, https://github.com/mbkuperman/cpuminer-multi-opencl/releases until then. As far as pools, I'm partial to my own http://mining.blue Grin, but here is a list of all the pools I know about. http://explorer.mining.blue/en/#pools

Thank you very much for the info, yes a Win binary would be great! And regarding the OP wallet links, are those correct??
No, I should build those, too.

Here is the updated tpruvot ccminer binary. Let me know if it works as I don't have a windows machine to test on. https://github.com/clintar/ccminer/releases/tag/v2.1-xbb

I'm having some issues with the boolberry wallet build. I'll update when I get that sorted.

Edit: OK, I made a release on my github repo for cryptozoidberg's latest master that has all the latest fixes. https://github.com/clintar/boolberry/releases/tag/v0.2a
The Cryptophilanthropist
Full Member
***
Offline Offline

Activity: 231
Merit: 101



View Profile
August 11, 2017, 01:08:54 PM
Last edit: August 11, 2017, 01:25:18 PM by The Cryptophilanthropist
 #8111

Is the wallet link in the OP (windows binaries) the correct current wallet download?

Also please the links for an Nvidia GPU miner?

I would like to mine at one of the pools, any suggestion anyone?
Epsylon/tpruvot's is probably the best for nvidia. https://github.com/tpruvot/ccminer , but he hasn't made a binary release with the larger scratchpad. I will try to get a binary created, or you can try the opencl one i mentioned a few posts ago, https://github.com/mbkuperman/cpuminer-multi-opencl/releases until then. As far as pools, I'm partial to my own http://mining.blue Grin, but here is a list of all the pools I know about. http://explorer.mining.blue/en/#pools

Thank you very much for the info, yes a Win binary would be great! And regarding the OP wallet links, are those correct??
No, I should build those, too.

Here is the updated tpruvot ccminer binary. Let me know if it works as I don't have a windows machine to test on. https://github.com/clintar/ccminer/releases/tag/v2.1-xbb

I'm having some issues with the boolberry wallet build. I'll update when I get that sorted.

Edit: OK, I made a release on my github repo for cryptozoidberg's latest master that has all the latest fixes. https://github.com/clintar/boolberry/releases/tag/v0.2a

Nice and thank you, I let wallet run overnight, no connections and no sync however, am I missing a conf file with nodes? I am familiar with cryptonote coins in linux and windows. Log file shows no connection to seeds, how to change or add connections, this I don't know, any advice? I ran you Win build from the link above.

EDIT: It connects if I use the "start" batch with proxy node flag in the folder, thanks Smiley

L8nit3-Miners Multi-Pool BTC PRT-LOG-XGTC BTC #GetMining
GdonateqfnmiJKv7mfnUcyvZHaiqxcTQS1 - XGTC DEV FUND
1G2PTf59cYsWKoZjj3i3Cv1Bb8NuNaeho2 - BTC POOL DEV
rooster2000bka
Sr. Member
****
Offline Offline

Activity: 299
Merit: 250



View Profile
August 11, 2017, 01:40:58 PM
 #8112

Thanks your hard working! I really like this coins! But this coin needs stronger Dev!
The Cryptophilanthropist
Full Member
***
Offline Offline

Activity: 231
Merit: 101



View Profile
August 11, 2017, 08:00:07 PM
 #8113

Re: CCMINER from recent post, after about an hour I notice the miner will begin submitting "boo" because of low diff share submission. Is there a fix or reason for this, I have used highest diff port, .... should I set a static diff in the batch or just write a restart batch script? Any thoughts are welcome, thanks.

L8nit3-Miners Multi-Pool BTC PRT-LOG-XGTC BTC #GetMining
GdonateqfnmiJKv7mfnUcyvZHaiqxcTQS1 - XGTC DEV FUND
1G2PTf59cYsWKoZjj3i3Cv1Bb8NuNaeho2 - BTC POOL DEV
clintar2
Full Member
***
Offline Offline

Activity: 202
Merit: 104


View Profile
August 11, 2017, 09:43:38 PM
 #8114

Re: CCMINER from recent post, after about an hour I notice the miner will begin submitting "boo" because of low diff share submission. Is there a fix or reason for this, I have used highest diff port, .... should I set a static diff in the batch or just write a restart batch script? Any thoughts are welcome, thanks.
Does it to me, too. It goes away and comes back. I think it is something to do with how the miner determines difficulty being off by a bit, but I'm not sure. Does it clear  up after that?
The Cryptophilanthropist
Full Member
***
Offline Offline

Activity: 231
Merit: 101



View Profile
August 12, 2017, 09:10:34 PM
 #8115

Wanting to send funds from Windows GUI wallet but do not see a place for payment ID when wanting to send to Bittrex, some advise please?

L8nit3-Miners Multi-Pool BTC PRT-LOG-XGTC BTC #GetMining
GdonateqfnmiJKv7mfnUcyvZHaiqxcTQS1 - XGTC DEV FUND
1G2PTf59cYsWKoZjj3i3Cv1Bb8NuNaeho2 - BTC POOL DEV
jd1959
Hero Member
*****
Offline Offline

Activity: 529
Merit: 505


I'm on drugs, what's your excuse?


View Profile
August 12, 2017, 10:58:09 PM
 #8116

Wanting to send funds from Windows GUI wallet but do not see a place for payment ID when wanting to send to Bittrex, some advise please?

Click on the "More options"  to the right of the amount.......it will open payment I.D field

Cheers Jon  Wink

          dICO Disguised Instant Cash Out
The Cryptophilanthropist
Full Member
***
Offline Offline

Activity: 231
Merit: 101



View Profile
August 13, 2017, 12:11:43 AM
 #8117

Wanting to send funds from Windows GUI wallet but do not see a place for payment ID when wanting to send to Bittrex, some advise please?

Click on the "More options"  to the right of the amount.......it will open payment I.D field

Cheers Jon  Wink

I see it now, must have missed it. Also how does one generate recovery passphrase (deterministic seed) I am familiar with CLI Linux version not this one, thanks.

L8nit3-Miners Multi-Pool BTC PRT-LOG-XGTC BTC #GetMining
GdonateqfnmiJKv7mfnUcyvZHaiqxcTQS1 - XGTC DEV FUND
1G2PTf59cYsWKoZjj3i3Cv1Bb8NuNaeho2 - BTC POOL DEV
Old_Timer
Member
**
Offline Offline

Activity: 131
Merit: 13

In the fray since 2013.


View Profile
August 14, 2017, 09:53:42 PM
 #8118

guys any nodes for wallet?
clintar2
Full Member
***
Offline Offline

Activity: 202
Merit: 104


View Profile
August 14, 2017, 10:57:41 PM
 #8119

guys any nodes for wallet?
You can try
Code:
 --add-priority-node 5.9.44.154:10101
Old_Timer
Member
**
Offline Offline

Activity: 131
Merit: 13

In the fray since 2013.


View Profile
August 16, 2017, 01:48:32 PM
 #8120


I added the code in boolberry.conf in boolberry directory but no effect.

What am I doing wrong?

Also is there any effort been done to bring this hidden gem in the spotlight?
Pages: « 1 ... 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 [406] 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 ... 486 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!