Bitcoin Forum
May 06, 2024, 06:20:27 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 [151] 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 ... 486 »
  Print  
Author Topic: [BBR] Boolberry: Privacy and Security - Guaranteed Since 2014  (Read 1210690 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.
mbk
Member
**
Offline Offline

Activity: 106
Merit: 10


View Profile WWW
August 14, 2014, 09:26:33 PM
 #3001

Still the same problems. I setup a pool from your repository https://github.com/clintar/node-cryptonote-pool in virtualbox and it works perfectly. Moreover with blockRefreshInterval set to 100 it should give the performance close to solo miner and cpu load would be still very low.
It's still the same. The pool doesn't send neither block nor scratchpad update when the new block arrives. On high difficulty performance is very poor.

Ok, got it now. It was a bug in the pool code that kept track of whether the connected port was stratum/tcp or http. Been a long standing bug I guess. Glad to finally fix that. Pool should be doing much better now! Thank you for helping me test it out!

Boolberry OpenCL solo miner - https://github.com/mbkuperman/boolberry-opencl
Boolberry OpenCL stratum pool miner - https://github.com/mbkuperman/cpuminer-multi-opencl
MBK's Boolberry pool - http://bbr.mbkpool.info
1715019627
Hero Member
*
Offline Offline

Posts: 1715019627

View Profile Personal Message (Offline)

Ignore
1715019627
Reply with quote  #2

1715019627
Report to moderator
The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715019627
Hero Member
*
Offline Offline

Posts: 1715019627

View Profile Personal Message (Offline)

Ignore
1715019627
Reply with quote  #2

1715019627
Report to moderator
1715019627
Hero Member
*
Offline Offline

Posts: 1715019627

View Profile Personal Message (Offline)

Ignore
1715019627
Reply with quote  #2

1715019627
Report to moderator
clintar
Full Member
***
Offline Offline

Activity: 212
Merit: 100


View Profile
August 14, 2014, 10:04:18 PM
 #3002

Still the same problems. I setup a pool from your repository https://github.com/clintar/node-cryptonote-pool in virtualbox and it works perfectly. Moreover with blockRefreshInterval set to 100 it should give the performance close to solo miner and cpu load would be still very low.
It's still the same. The pool doesn't send neither block nor scratchpad update when the new block arrives. On high difficulty performance is very poor.

Ok, got it now. It was a bug in the pool code that kept track of whether the connected port was stratum/tcp or http. Been a long standing bug I guess. Glad to finally fix that. Pool should be doing much better now! Thank you for helping me test it out!
Hmm, pool should using the same code. Block refresh was set to 1000, though. I better check my config against that in the repo
Apostle4444
Hero Member
*****
Offline Offline

Activity: 832
Merit: 500



View Profile
August 15, 2014, 03:40:55 AM
 #3003

Connected to bbr.farm (54.255.165.99) port 5555 seems to be dead for last few days.. Sad
whyyk7
Full Member
***
Offline Offline

Activity: 174
Merit: 100


View Profile
August 15, 2014, 07:17:38 AM
Last edit: August 15, 2014, 08:27:02 AM by whyyk7
 #3004

2014-Aug-15 15:06:25.035440 [RPC1]Failed to store scratchpad, error: basic_ios::clear

rpc store scatchpad failed,what can i do.

rpc return:
{ status: 'BUSY' }


resolved
Apostle4444
Hero Member
*****
Offline Offline

Activity: 832
Merit: 500



View Profile
August 15, 2014, 07:58:38 AM
 #3005

Mining issues is killing the coin.. Sad
aloney
Full Member
***
Offline Offline

Activity: 122
Merit: 100


View Profile
August 15, 2014, 08:37:52 AM
 #3006

Mining issues is killing the coin.. Sad

what issues?

PPL:XunifRT3qvqnPi8kQ2PyLSSejHrSnUTHtX
Apostle4444
Hero Member
*****
Offline Offline

Activity: 832
Merit: 500



View Profile
August 15, 2014, 09:33:44 AM
 #3007

Connected to bbr.farm (54.255.165.99) port 5555 seems to be dead for last few days.. Sad

Feckers changed the scratchpad location..grrr
mbk
Member
**
Offline Offline

Activity: 106
Merit: 10


View Profile WWW
August 15, 2014, 10:19:16 AM
 #3008

It looks like your pool is sending updates now but they are about 8 seconds late. The miner works with wrong data, gets boo and reconnects if it finds a share. It considerably decreases mining efficiency. The pool I setup from the repository send updates in less then 100ms but it looks there is other bug anyway. Shares submitted right after the block/scratchpad update are rejected by the test pool. The pool_warn.log is:
Code:
Bad hash from miner XXX@10.0.2.2
 scratchpadHeight.height=63856, job.height=63858
Looks like the pool validates the share with the old scratchpad.
P.S. Checked the source - that's the case. Pool's scratchpad is updated through getFullScratchpad RPC call. It takes 3 seconds on my system. At the same time miner's scratchpad updated instantly by ADDENDUM in new block data. So valid shares are rejected by the pool if sent in less then 3 seconds after the new block.
Still the same problems. I setup a pool from your repository https://github.com/clintar/node-cryptonote-pool in virtualbox and it works perfectly. Moreover with blockRefreshInterval set to 100 it should give the performance close to solo miner and cpu load would be still very low.
It's still the same. The pool doesn't send neither block nor scratchpad update when the new block arrives. On high difficulty performance is very poor.

Ok, got it now. It was a bug in the pool code that kept track of whether the connected port was stratum/tcp or http. Been a long standing bug I guess. Glad to finally fix that. Pool should be doing much better now! Thank you for helping me test it out!
Hmm, pool should using the same code. Block refresh was set to 1000, though. I better check my config against that in the repo

Boolberry OpenCL solo miner - https://github.com/mbkuperman/boolberry-opencl
Boolberry OpenCL stratum pool miner - https://github.com/mbkuperman/cpuminer-multi-opencl
MBK's Boolberry pool - http://bbr.mbkpool.info
crypto_zoidberg (OP)
Hero Member
*****
Offline Offline

Activity: 976
Merit: 646



View Profile WWW
August 15, 2014, 02:47:45 PM
 #3009

Good news!

We have new release 0.2.0.32(b91e9ab) with some improvements, mostly on GUI:

1. Implemented recent transfers history. Now after reopening your wallet you see your recent transfers, even with addresses that you used to transfer (or alias if address was registered).



Notice: This will start work from new build only, transfers that was made in older GUI version won't be seen. Also, if you gonna lost your wallet data file (some_wallet.bbr) recent transfers recipient addresses will be lost.

2. Implemented unconfirmed transaction state. Now, when you sent your transaction, you could see it as "unconfirmed" in recent transfers list:



Even is you close your wallet, and reopen it again, unconfirmed transfer won't be lost - so now you cold track your transaction confirmation.

Also made a lot of cosmetic improvement on appearance based on Bitcrea design adjustments.

Wellcome to try new version: http://boolberry.com/downloads.html



tifozi
Hero Member
*****
Offline Offline

Activity: 742
Merit: 501


View Profile
August 15, 2014, 07:42:22 PM
 #3010

Built qt-wallet using new source. For anyone running into problem building with Qt 5.3 (Qt5Gui_EGL_LIBRARY-NOTFOUND), please install package libegl1-mesa-dev  http://qt-project.org/forums/viewthread/44605

zoidberg, there are some minor changes needed to make the linux build script better https://github.com/cryptozoidberg/boolberry/blob/master/utils/build_script_linux.sh

Also thanks for the tip Wink received  Grin



BitcoinFX
Legendary
*
Offline Offline

Activity: 2646
Merit: 1720


https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF


View Profile WWW
August 15, 2014, 11:26:09 PM
 #3011

Latest wallet additions are Booltiful !   Smiley

Keep up the good work.   Cool

"Bitcoin OG" 1JXFXUBGs2ZtEDAQMdZ3tkCKo38nT2XSEp | Bitcoin logo™ Enforcer? | Bitcoin is BTC | CSW is NOT Satoshi Nakamoto | I Mine BTC, LTC, ZEC, XMR and GAP | BTC on Tor addnodes Project | Media enquiries : Wu Ming | Enjoy The Money Machine | "You cannot compete with Open Source" and "Cryptography != Banana" | BSV and BCH are COUNTERFEIT.
tifozi
Hero Member
*****
Offline Offline

Activity: 742
Merit: 501


View Profile
August 15, 2014, 11:39:42 PM
 #3012

Latest wallet additions are Booltiful !   Smiley

Keep up the good work.   Cool

Don't get too attached to the name BitcoinFX Wink
tifozi
Hero Member
*****
Offline Offline

Activity: 742
Merit: 501


View Profile
August 16, 2014, 12:38:00 AM
Last edit: August 16, 2014, 01:04:22 AM by tifozi
 #3013

I really like the GUI improvements but I hope the CLI is not forsaken for us small minority that prefer command line..

Latest wallet additions are Booltiful !   Smiley

Keep up the good work.   Cool

Don't get too attached to the name BitcoinFX Wink

lol this eager, crypto_zoidberg your people want a new name  Tongue

Well, his highness keeps dropping hints, but then disappears, apparently to control his botnets  Grin Grin Grin (joking zoidberg)

Yah some documentation around the command line would also help. Just today I was having a hard time connecting to the seeds or even peers.  otila, in IRC helped with the option.

Code:
--add-priority-node arg
where arg is the IP to connect to.

If you just pass IP as argument it doesn't work. Turns out the command he found from the source code is,

Code:
--add-priority-node IP:port 

Some general command line documentation enhancements can be pushed to the code base.
Brilliantrocket
Hero Member
*****
Offline Offline

Activity: 826
Merit: 500



View Profile
August 16, 2014, 02:27:26 AM
 #3014

I'm currently trying to compare Boolberry vs. Monero, and the biggest thing that sticks out to me is the name. Is rebranding on the radar at all? Boolberry is cute, but you're selling yourselves short. Monero sounds like money, Boolberry sounds like a bubblegum flavor.
clintar
Full Member
***
Offline Offline

Activity: 212
Merit: 100


View Profile
August 16, 2014, 04:59:06 AM
 #3015

I'm currently trying to compare Boolberry vs. Monero, and the biggest thing that sticks out to me is the name. Is rebranding on the radar at all? Boolberry is cute, but you're selling yourselves short. Monero sounds like money, Boolberry sounds like a bubblegum flavor.
Go back a few pages
crypto_zoidberg (OP)
Hero Member
*****
Offline Offline

Activity: 976
Merit: 646



View Profile WWW
August 16, 2014, 08:35:39 AM
 #3016

I'll keep CLI working, sure. Also i could add recent transfer to cli wallet also, it's not really difficult now, if it make sense.

I really like the GUI improvements but I hope the CLI is not forsaken for us small minority that prefer command line..

Latest wallet additions are Booltiful !   Smiley

Keep up the good work.   Cool

Don't get too attached to the name BitcoinFX Wink

lol this eager, crypto_zoidberg your people want a new name  Tongue

teknohog
Sr. Member
****
Offline Offline

Activity: 519
Merit: 252


555


View Profile WWW
August 16, 2014, 09:40:16 AM
 #3017

Boolberry sounds like a bubblegum flavor.
IMHO, Boolberry fits right in with the semi-childish names of tech giants like Google, Twitter, Apple.... and Blackberry. I'm sure these names were chosen to reflect our new, more playful times, as a clean break from the dead serious corporate images of portly men in dark suits. Let Monero have its suits, we have all the fun.

world famous math art | masternodes are bad, mmmkay?
Every sha(sha(sha(sha()))), every ho-o-o-old, still shines
BitcoinFX
Legendary
*
Offline Offline

Activity: 2646
Merit: 1720


https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF


View Profile WWW
August 16, 2014, 10:45:04 AM
 #3018

I'm currently trying to compare Boolberry vs. Monero, and the biggest thing that sticks out to me is the name. Is rebranding on the radar at all? Boolberry is cute, but you're selling yourselves short. Monero sounds like money, Boolberry sounds like a bubblegum flavor.

IMHO, Boolberry fits right in with the semi-childish names of tech giants like Google, Twitter, Apple.... and Blackberry. I'm sure these names were chosen to reflect our new, more playful times, as a clean break from the dead serious corporate images of portly men in dark suits. Let Monero have its suits, we have all the fun.

Indeed. That's exactly why I personally really like the name. It's a bit alternative, which can make it very memorable.

Absolutely nothing wrong with Monero, although it sounds like and means money.

Ask yourself does visa, mastercard or amex sound like money? Not really - Its only by association and familiarity of course.

Ask them - Do you accept boolberry ?

"Bitcoin OG" 1JXFXUBGs2ZtEDAQMdZ3tkCKo38nT2XSEp | Bitcoin logo™ Enforcer? | Bitcoin is BTC | CSW is NOT Satoshi Nakamoto | I Mine BTC, LTC, ZEC, XMR and GAP | BTC on Tor addnodes Project | Media enquiries : Wu Ming | Enjoy The Money Machine | "You cannot compete with Open Source" and "Cryptography != Banana" | BSV and BCH are COUNTERFEIT.
BitcoinFX
Legendary
*
Offline Offline

Activity: 2646
Merit: 1720


https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF


View Profile WWW
August 16, 2014, 11:16:39 AM
 #3019

The above reminded me of this:

~ http://youtu.be/dBtmzY5gcO8?t=18m28s

Coins and notes are just so, 'old world' !   Grin

Oh, the irony.

"Bitcoin OG" 1JXFXUBGs2ZtEDAQMdZ3tkCKo38nT2XSEp | Bitcoin logo™ Enforcer? | Bitcoin is BTC | CSW is NOT Satoshi Nakamoto | I Mine BTC, LTC, ZEC, XMR and GAP | BTC on Tor addnodes Project | Media enquiries : Wu Ming | Enjoy The Money Machine | "You cannot compete with Open Source" and "Cryptography != Banana" | BSV and BCH are COUNTERFEIT.
aloney
Full Member
***
Offline Offline

Activity: 122
Merit: 100


View Profile
August 16, 2014, 12:55:48 PM
 #3020

I think the name is not the key point, the point is the mining issues, it kills this coin, in the early time, there's private GPU tool for mining when most of us are using cpu, it's unfair for most people, and it last for maybe two months, until MBK made the stratum pool and updated the opensource GPU tool  the  situation of distribution changed  a little. Compared to Monero, GPU mining tool appeared early, and it was also efficient at the beginning, so it's not just the name make the difference between BBR and MRO, but the distribution

PPL:XunifRT3qvqnPi8kQ2PyLSSejHrSnUTHtX
Pages: « 1 ... 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 [151] 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 ... 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!