Bitcoin Forum
May 27, 2024, 01:08:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 [265] 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 »
5281  Bitcoin / Development & Technical Discussion / Re: Odd bug, Bitcoin-qt progress bar uses checkpoint 140700 instead of current block on: February 11, 2012, 12:16:33 AM
That sounds like a bugfix that was put in 0.6, IIRC. I might have to bust out zee code and see how it works, though it may be a lot longer for me to understand it than for the person who wrote it to tell me.

Nope.
5282  Bitcoin / Development & Technical Discussion / Re: Hub-node patch for bitcoind - windows version? on: February 10, 2012, 06:06:23 PM
But if I wish to run a real mining node (not p2pool), it seems that the best course of action then would be to run 2 bitcoind instances: 1 "hidden" on the mining server, and a (patched?) version somewhere else. Then, I would addnode the mining server instance, so that it maintains a reasonable number of connections, but still can forward blocks to the patched instance which can then spam the blocks out across the network.

That would be my advice, yes.  (Well, my advice is to run p2pool!)

Also, you shouldn't need a patch— as mentioned if you up maxconnections a bit (don't go over 900 or so!)  and wait a while you should get a fairly large number of connections in a while.
5283  Bitcoin / Development & Technical Discussion / Re: Odd bug, Bitcoin-qt progress bar uses checkpoint 140700 instead of current block on: February 10, 2012, 04:52:07 PM
I also realized that we have added 200MB to the blockchain in two months, the blk0001.dat is now about 1GB. At 2GB it may start causing problems for some users

Sorry, Missed this part the first time. The file will automatically split. Thus the 0001. Smiley



5284  Bitcoin / Development & Technical Discussion / Re: Hub-node patch for bitcoind - windows version? on: February 10, 2012, 04:49:28 PM
I would like to do the same. If you figure it out, maybe you could update this thread. I haven't had any luck with my occasional random searching.

This is really irrelevant for P2Pool because p2pool forwards blocks among the p2pool miners and has them all forward it in. This works really well because the p2pool forwarding is much faster than the bitcoin forwarding because it has to do less validation work.

Actually having large numbers of connection on the daemon you're mining from is a bad idea because servicing large numbers of mostly useless random windows users will slow down the daemon you need to be responding promptly to process blocks and mine.

In my P2pool operation I run four bitcoin daemons:  Two service p2pool nodes and only connect to my own nodes and a couple of carefully selected large miner daemons. One is a regular listening public node (with simply maxconnections=512, no crazy patches and it now has 489 connections), the other is a hidden unannounced node on secondary connectivity for dos resistance.

This is the sort of setup you want for reliable mining. Not some connection spammy patch.
5285  Bitcoin / Pools / Re: P2POOL vs. Pooled Mining - something stinks here on: February 10, 2012, 02:34:41 PM
Of course, this would also make the attacking pool look pretty unlucky too...

No it wouldn't—  they only have to pay out of pockets their reduction in the victim pool's return. They can claim to be as lucky as they like, presuming they are hiding the identity of their blocks.

But P2Pool is resistant here, both because the block bonus makes it even more unprofitable to withhold, but also because the real justification for refusing to use a habitually unlucky pool, that it might be an indicator of an operator who is skimming, just doesn't apply.

Quote
if a pool uses the hashing power from its miners its detectable.
every miner who found a block should check if his pool shows it.. if not -> he may be cheated...
but i guess that there are not many miners out there who do this regulary. so its not a big risk for the pool itself.

Pretty much no one does this, IIRC none of the miners facilitate doing this in a way that would make it easy (e.g. provide a separate log file of found block). And now with all these non-public pools operating that give >100% reward it's hard to simply audit pools because they're not generally accessible.

(in light of the recent lucky run, I changed the threads subject Smiley )
5286  Bitcoin / Development & Technical Discussion / Re: Odd bug, Bitcoin-qt progress bar uses checkpoint 140700 instead of current block on: February 10, 2012, 02:19:29 PM
How does Bitcoin determine the current block, and why can't it get it from my local node running 0.5.2?

It's not a bug, its a feature.

The client hears about it in the version messages, but it can't just trust it or some trouble maker will claim that the height is ten trillion. So, IIRC it takes a median and won't provide one if you only have a few peers.

If it doesn't have an estimate from the peers it uses the highest checkpoint.
5287  Bitcoin / Development & Technical Discussion / Re: Proposal for future script engine upgrades on: February 10, 2012, 02:48:26 AM
So, here's how I think it could work in the future that would work even if miner coordination is botched.  Clients should be designed to support 2 script engines and their associated block chains.

This is already how BIP16 works. All BIP16 transactions are required to be valid under the old rules (and are validated twice to ensure this). The activation time is only when they start enforcing the new rules.
5288  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator [v0.17] on: February 10, 2012, 02:44:43 AM
Regardless, the new client will still accept older uncompressed public keys, so why bother making the change to vanity gen?  Unless you're trying to "do your part" in helping keep the blockchain as short as it can be...

Reducing your pubkey sizes will also reduce what you pay in transaction fees when you spend coins sent to those addresses— and potentially it could make vanitygen faster due to having two tries for every private key.
5289  Bitcoin / Development & Technical Discussion / Re: [Req]Add optional official download for wallet's cache integrated into installer on: February 08, 2012, 01:57:56 PM
I would agree that this would be a sensible thing to do.

Most people download the client from a central place anyway so I don't see much added risk including an up to date block chain.

People can, and do, audit the software— even the binaries due to the use of a deterministic build process— so any replacement with a compromised version has the risk of detection.  At least as things are currently constructed, an opaque blockchain wouldn't have this property.

Discussions of including the blockchain are ignoring the real issue too— initial syncup is slow because the chain validation is slow. The validation is slow due to IO related implementation issues.

Once this is fixed there will be a lot less cause for concern. Beyond that, the software should eventually make validation and downloading decoupled so that it could go on in the background— making the client usable even while downloading/validation is going on. This would be much better than making the install file a gigabyte.

In any case, it's easy to propose things— and the idea that the package could include a copy of some blockchain, with the according loss of zero-trust hasn't failed to occur to pretty much anyone— why not sit down and spend some time trying to improve it?
5290  Bitcoin / Bitcoin Discussion / Re: Is Bitcoin about to be attacked by miners? on: February 08, 2012, 03:37:55 AM
One of them is actually offering 115% PPS return!

On some of these services people are being paid 140-150% PPS, in fact.

Careful with suggesting anything, some of the operators of these services are known to put large bounties up to "uncover" evidence against people who ask sharply pointed questions.
5291  Bitcoin / Development & Technical Discussion / Re: Wallet encryption issue on: February 08, 2012, 03:32:58 AM
FYI, I finally remembered to update the original post about the encryption issue.  Should be complete now.

There actually turned out to be no way to convince the database system to actually purge the data. The cleanup is handled by creating a new database, copying the data over, and deleting the original one. Doing this completely even requires shuttdown the library so all the databases can be cleanly closed.  A real pain.
5292  Bitcoin / Development & Technical Discussion / Re: Hub-node patch for bitcoind - windows version? on: February 08, 2012, 03:30:18 AM
There is a patch for bitcoind that aggressively accumulates nodes to act as a hub relay. Is there a windows binary version of this available anywhere? There isn't much info on it that I can find. The current bitcoind is somewhat lackluster and gets 30-50 nodes, but it really ought to be able to gather hundreds or thousands.

There is no particular reason you should need or expect more, really.  We don't currently have a shortage of available ports.

(and just because it wouldn't be clear to everyone: the 'patch' in the other reply here would result in memory corruption, and shouldn't be used)
5293  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin (solo)-miners?! Come to Litecoin P2Pool!! A new promotion is coming! on: February 07, 2012, 11:36:52 PM
Please, read the following topic:

P2Pool donations - Promotion! You'll stay out?!
https://bitcointalk.org/index.php?topic=62940.0

Cheers!
Thiago

Might want to get the suppression of "stale" shares made configurable by the pool in the pooler miner, as was recently done in cgminer, in order to make sure ltc p2pool performs well.
5294  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator [v0.17] on: February 06, 2012, 07:38:01 AM
Vanitygen is a command-line vanity bitcoin address generator.

I haven't seen any mention of compressed pubkey support.

The latest versions of Bitcoin (perhaps just git, so .6 post but I'm not going to bother checking) will default to creating addresses based on compressed public keys.

These addresses look just like every other address but they take up less space in the blockchain when you spend from them (and thus lower txn fees in the long run).

Every private key has two possible addresses. One based on the compressed public key, one based on the regular public key.   It takes a bit more computation on top of the normal public key generation to get the compressed version.

It would probably be a good idea for vanitygen to offer / default to generating compressed public keys.

Have I missed discussion related to this?
5295  Bitcoin / Development & Technical Discussion / Re: Bitcoin p2p Network Status Charts. on: February 05, 2012, 09:28:41 AM
for example the number of hosts,

It's worth mentioning that the (non-listening) nodes figures will probably drop substantially as the result of some new node behavior.

First, there are the announcement changes where nodes which aren't listening or arn't current with the block-chain will not announce their addresses to the network.

Second, the stochastic address manager will likely reduce the propagation of unreachable nodes so that old and never working addresses will probably disappear faster rather than circulating through the network like undead zombies.

Some of this may be counterbalanced by UPNP fixes increasing listening nodes, but this fix needs testers and isn't yet even in the pipeline for upstream until it gets some.
5296  Bitcoin / Bitcoin Technical Support / Re: How bad firewall settings can make you lose 75 BTCs on: February 05, 2012, 08:59:28 AM
the reason i'm not on IRC anymore and the reason why my bitcoin node is not exposed there with bitcoin client 'noirc' flag enabled.

noirc was not sufficient to prevent you address from being relayed— bad guys couldn't get it from IRC but they could get it from the regular node to node address exchanges.

noirc + nolisten will be enough in the next version of bitcoin, however.
5297  Bitcoin / Bitcoin Discussion / Re: Win 100 BTC by becoming the first Satoshi Superstar! on: February 05, 2012, 08:37:22 AM
Win 100 BTC!

That’s right, the Grand Prize Winner of the Satoshi Superstars competition wins 100 BTC, along with all the bragging rights that come along with surviving the elimination rounds. Contestants must:

Oh great, it's a mildly disguised all pay auction (after all, if you stand to win 100 BTC shouldn't you pay up to 99.999 to your own voting address to win, and once two have done that shouldn't you keep on paying to minimize your loss?)  which also encourages bloating the blockchain with tiny transactions.

There is no reason to conduct a "vote" using the blockchain. In fact, doing so is a pretty poor idea because it gives miners the ability to influence the outcome by rejecting transactions.  It doesn't even secure you against manipulation, because the recipient of the vote-funds can just pay themselves (anonymously) to get whatever result they want since they're just going to get the funds back.
5298  Alternate cryptocurrencies / Altcoin Discussion / Re: Dead Cryptocurrencies? on: February 04, 2012, 01:41:59 AM
Hey, I was wonder if anyone had a list failed Cryptocurrencies? 
I know about Coiledcoin, but is there any other coins out there with no exchange and no pools?
Also,  Can you still keep a wallet of these?  Example, Could a still open a wallet with Coiledcoin in it and send it to another wallet?

Any help would rock.

In the case of CLC you could, you just have to pay a 100 CLC transaction fee.  In the case of other ones, you may have to start two nodes (if you are the only one) and mine them yourself if you want to process a transaction.
5299  Bitcoin / Pools / Re: [150GH/s] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: February 03, 2012, 10:35:40 PM
I have consistently higher stales than the pool. Today I mined my HD8650 for 8 hours non-overclocked (so at ~210Mhz instead of ~250Mhz) and that did not improve it any. On average p2pool reports ~16%+-16 while the pool is usually about 8% (today it even reported 23%+-23% !)

Is there anything I can do about this?

What reject rate does your rpc miner show?  Are you running NTP (is your clock correct)?

The big -/+ means you don't really have much data for the estimate.  Those ranges mean that in fact your true stale rate might actually be pretty low.

Because you're a bit behind when you start its usually to get a couple stales right away that makes the number start out poor but then it improves with time.  It's not unusual for me to see stales at 20% shortly after startup but by efficiency is usually at 100% by the next morning or so.  (converges a bit faster if you have more hash power though)
5300  Other / Meta / Re: Open [400 BTC Bounty] "Maged's Child Porn evidence" on: February 03, 2012, 02:33:48 PM
It appears that this is an issue of mistaken identity. I was just informed that the person who did these things is not actually connected to you. I apologize for that.

I have edited my earlier statement to reflect this.

I have no freeking clue what you're talking about, in fact.

I was told that the >100% payout private pools were operating services which returned clean coins to people engaging in unlawful activities, which seemed like the only explicable purpose for them since they are effectively paying people $1.15 for a _chance_ at $1.

If this was true I think the participating miners would have a right to know, since they'd be potentially putting them in front of investigations for the unlawful activities connected to the coins they received (if there was no such risk, why launder the coins?). My message explained this quite directly.

I included child porn in the list of potentially unlawful activities that people may trade with Bitcoin that the recipient of laundered funds may be investigated for in my cautionary message just because "Guns and drugs" sounded like SR, and I didn't have any reason to think the laundering was related to SR specifically, nor were they there to defend themselves— and I'm aware there have been issues in the past with people offering child sex services in our related communities.

I was particularly concerned that the people proffering these services were not even making an _attempt_ to argue a legitimate lawful purpose to them.

How was I supposed to know that Goat was a expat living in Thailand (?) who people had been previously accused of being involved in child sex trafficking?  :-/   I had not been made aware of those particular accusations (though perhaps the people telling me that the >100% payouts were for laundering had been). I was not aware of the previous boondoggle with the supposedly underage undocumented cam girl.  Though perhaps I might point out that in most of the developed world the obligation is on the provider of sexual content to document that their models are of age rather than demanding that other people, without the benefit of knowing their identity, prove them to be underage.

Do we really want to be running a community here where people express a concern the accused offer assassination market payments to "uncover" evidence against their accusers? I don't think this is acceptable.

Pages: « 1 ... 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 [265] 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!