Bitcoin Forum
May 09, 2024, 12:42:02 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 [81] 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 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 ... 224 »
1601  Bitcoin / Bitcoin Technical Support / Re: Transaction is back after -zapwallettxes on: February 26, 2017, 01:54:50 PM
so what i am wondering is did another node then tell my node about this transaction again?
Yes.

and how long could other nodes keep this transaction in their mempool?
Potentially forever, unless a conflicting transaction is confirmed.
1602  Economy / Speculation / Re: BITSTAMP ALL TIME HIGH BROKEN on: February 24, 2017, 07:15:13 AM
Well that didn't last long. Sad Everybody, stop dancing.
1603  Economy / Speculation / Re: BITSTAMP ALL TIME HIGH BROKEN on: February 24, 2017, 01:23:49 AM
Everybody, dance!

1604  Bitcoin / Bitcoin Discussion / Re: So who the hell is still supporting BU? on: February 17, 2017, 02:50:30 PM
i was typing to fast.. oh well. grammar nazi

consensus.h BLOCKSTREAM_CORE_MAX_BLOCK_SIZE  - what nodes can cope with
policy.h DEFAULT_BLOCK_MAX_SIZE   - what pools will make (EB)

same thing for BOTH core and BU just a word change.


if the only knit pick you can find is someones typo.. then you need to try harder
Nobody said anything about your grammar, and your embarrassing mistakes were more than a typo. After all, nobody deletes their post just because they made a typo.
1605  Bitcoin / Bitcoin Discussion / Re: So who the hell is still supporting BU? on: February 17, 2017, 02:21:18 PM
its the same consensus as bitcoin always has been its just a name change. (please learn something atleast)
No it's not. I've just explained that.

AD blocksize (consensus)
core: 1mb-4mb (currently 1)
BU 16mb

EB blocksize (preference)
core: 0.75-0.999mb
BU 1-2mb
Just for kicks, I'd like to see you explain this new hole you've dug yourself into, which definitively proves you don't know what you're talking about. Hint: AD is not a block size. Roll Eyes
1606  Other / Meta / Re: Requesting Permanent Ban for nomad13666 - continual low-content postings on: February 17, 2017, 03:41:35 AM
As lonely as the forum would be without kooks continually making low-content posts in idiotic topics, this one's fairly begging to be banned. He really is.
1607  Bitcoin / Bitcoin Discussion / Re: So who the hell is still supporting BU? on: February 16, 2017, 11:35:25 AM
See, your understanding of decentralized consensus systems is completely wrong. I don't understand why you are trying to push some 'opinions', 'agendas' or whatever they may be when you don't understand/know the essence. "The point is to not have consensus" is on a new level of absurdity. Bitcoin works right here, right now, because there is consensus. The whole point (in this content) is to have/achieve decentralized consensus which gives it strength.
BU supporters' understanding of consensus systems in general is completely wrong, not just decentralised ones. I don't know why; it's a simple concept: it means that several independent implementations of a program given the same input data will give the same output, and those that give different results will automatically be known to be wrong. In the specific case of Bitcoin, it means that given multiple conflicting transaction chains, of which only one of them can be valid, all Bitcoin nodes everywhere will always agree on which chain is valid.

BU's so-called "emergent consensus" is not a consensus system of any kind. It explicitly allows nodes to disagree on which of multiple conflicting chains is valid, and it's trivial for malicious miners to force a chain split among disagreeing nodes to allow double-spending. It's not even fair to call this an "attack" since this catastrophic breakdown of consensus is by design. Anyone supporting BU deserves to lose their coins, and I think they're likely to.
1608  Alternate cryptocurrencies / Altcoin Discussion / Re: theoretical code limit on handling values on: February 14, 2017, 04:29:51 AM
there are a bunch of checks arounds MAX_MONEY (including MoneyRange).
i changed one of the error checks to (MAX_MONEY - 1),
and it still allows .000000011 over that value so there is some obvious looseness around these values.
https://github.com/bumbacoin/stronghands/commit/8bc58843f43012e142beff29a8fcbb7a37c8ed5b
You seem to have snuck in an extra decimal place there:
Code:
>>> 1999999999.00000011 > 1999999999
False
But there's no inherent "looseness" here; remember that floating points are simply integers multiplied by an integer power of two, eg, the decimal fraction 0.5 is represented as 1x2-1. Binary scientific notation, in other words. Double-precision floats (which is what you're dealing with) use 11 bits to store the exponent, which leaves only 53 bits bits for the mantissa (including the sign bit). That's just not enough for a number like 1999999999.00000011, so the least significant bits are lost:
Code:
>>> 1999999999.00000011
1999999999.0
This isn't really a problem with floating points per se; you're fundamentally trying to squeeze a too big number into too few bits, which will naturally give erroneous results no matter what method you use. Nothing you can do except use 64-bit integers everywhere (and convince everyone else writing software for your coin to do the same; good luck).
1609  Alternate cryptocurrencies / Altcoin Discussion / Re: theoretical code limit on handling values on: February 13, 2017, 05:33:58 AM
The main limitation is that JSON, being JavaScript-based
What does JSON have to do with any of this? The Bitcoin protocol does not use JSON anywhere.
No, but the RPC interface does, and enough programs are still treating bitcoin amounts as floats that floating-point precision is the limit of what numbers are "safe".

In fact, I predict that within a year of fractional satoshis being introduced (by a protocol extension or second layer or whatever), someone will lose a significant amount of money due to a floating-point rounding error in third-party software.
1610  Alternate cryptocurrencies / Altcoin Discussion / Re: theoretical code limit on handling values on: February 13, 2017, 03:33:56 AM
The main limitation is that JSON, being JavaScript-based, interprets numbers as double-precision floating point. The largest value that can be thus represented correct to 8 decimal places is 67,108,863.99999999. But even if nothing in Bitcoin Core used floating points, it's highly likely that other Bitcoin software still would (eg, web wallets using JavaScript), so it's not a simple matter to use larger number formats.
1611  Bitcoin / Bitcoin Technical Support / Re: Update with out synced wallet? on: February 11, 2017, 12:07:55 PM
Every thing I have read says you need to sync before upgrading but this will take 6 months plus.
I don't know where you read that, but it is false. It makes no difference when upgrading whether you are fully synced, not synced at all (as would be the case with a fresh installation), or anything in between. The new version should pick up where the old version left off and, since many optimizations have been made in recent versions, it will finish synchronizing much faster.

My questions are, can I backup my wallet.dat, update and not loose my coins without syncing?
Yes. You should in any case back up your wallet.dat whether you plan to upgrade or not.

Or, can I save my wallet.dat, download another wallet on a different PC and put my wallet.dat into that wallet?
If by "another wallet", you mean "something other than Bitcoin Core", then no, at least not easily. Bitcoin-Qt/Core wallet files are generally not compatible with other programs.
1612  Bitcoin / Bitcoin Discussion / Re: So who the hell is still supporting BU? on: February 07, 2017, 03:29:42 AM
You don't get to submit invalid blocks to the network and then stay on the network.
Except they do. One thing which nobody seems to want to mention (likely because Core users don't care and BU users are too incompetent to notice) is that .onion nodes didn't ban anyone. They can't, what with the whole "anonymity" thing and all. My .onion node saw two BU peers relay the invalid block and... that's it. No other BU nodes connected to it until the Core chain overtook the BU chain. That's actually a lot because I usually only have one solitary BU peer connecting via Tor. Is this really the entirety of BU's Tor presence? I like to think that those two BU nodes were the only two still able to connect to Core nodes and were the only thing preventing the network from splitting completely.
1613  Bitcoin / Bitcoin Discussion / Re: Is Roger gonna tell us he made a simple transaction that cost a fortune again. on: February 07, 2017, 01:52:48 AM
That said, the include fee-rate is 'Fee / KB 0.00362056 BTC' which translates to ~362 satoshis/byte. This is ~3 factors higher than the recommended fee-rate.
Actually, it's only half the recommended fee for next block confirmation*, which is doubtless why it took an entire 2 blocks to confirm.

*The latest version of Core doesn't allow setting the confirmation target that fast, due to how "ridiculous" the fee can get. It's like, up to two dollars for reasonably sized transactions. I'm not sure who decided two dollars was "ridiculous" for an international payment system; gotta have your on-chain coffee, I guess.
1614  Bitcoin / Bitcoin Technical Support / Re: On-the-fly backup possible? on: February 05, 2017, 06:08:26 AM
No, the Backup Wallet option only copies your wallet.dat file, not the blockchain state, which cannot be safely copied while Bitcoin Core is running. I think achow101 misunderstood the question.

The question is why are you backing up the blockchain state? If you merely want to avoid the bandwidth cost of downloading the blockchain all over again, a workaround is to back up the blocks folder and use the -loadblock parameter to synchronize from that, which should work despite the most recent .blk file likely being corrupt if you copied it while Core was running. It will still take a long time to verify everything. The only way around that is to back up everything while Core isn't running, so that the chainstate data will not be corrupted.
1615  Bitcoin / Bitcoin Discussion / Re: Bitcoin.com almost forks the blockchain with buggy BU on: February 01, 2017, 01:02:13 PM
How could that have happened? Huh
They changed the code that calculates the block size without understanding how it works, and pushed out the change without any review or testing. This is standard practice for Bitcoin Unlimited developers, and nobody is the least bit surprised that it blew up in their faces. It may be the first time Bitcoin Unlimited users have lost money as a direct result of the developers' incompetence, but it's unlikely to be the last.



leaving the connection open would have done no harm because core nodes already rejected the block..
It harms nodes with limited connection slots. Banning misbehaving nodes frees up slots for correctly behaving nodes. Any node that relays an invalid block is either defective or malicious, and there's no point in maintaining a connection to such nodes.

but by dropping the connections then no longer plays by consensus rules and the two non-communicating nodes could end up following different data. because they no longer allow communication with each other to reject/accept the same data.
They're already following different data, whether they're communicating or not. By definition, there can be no consensus when one node thinks a block is valid and another does not.
1616  Other / Off-topic / Re: [FACTS] North / South = SCAM ! on: January 31, 2017, 04:03:38 AM
@Foxpup
No one wants to read your topics, you have not posting anything interesting to read.
I have.. such as this one.
It's certainly interesting, but not for the reason you think. Remember, we're not laughing with you, we're laughing at you.

To recap..
I was thinking if you looked out in space from Earth which way is up and which way is down ?
So i got on Google..
Turns out there isn't an up or down.
I already told you, down is the direction a plumb bob points. See, there's this thing called "gravity" that causes massive objects to be pulled "down". Haven't you heard of it?

We humans simply arbitrarily for no real good reason chose North to be up etc.
No one ever called North on a compass "down"
Who's "we"? Nobody over the age of 8 ever called north "up" either.

If you look at the Moon which part is the top and which part is the bottom ? Ever wondered ?
Turns out there is no top or bottom.
Do you also wonder which part of a golf ball is the top and which part is the bottom? Or a die? Or any other object with no defined orientation? Do you spend a lot of your time wondering about concepts so simple that most children have them figured out?

You all know what i am saying Wink
We really don't.
1617  Other / Politics & Society / Re: Talking about Atheism... on: January 31, 2017, 03:46:42 AM
Out of the normal relaxed atheism, as it used to be, we seams to have a growing branch of a special "atheists" that act as much as the next religious fanatic!

1618  Bitcoin / Bitcoin Discussion / Re: SegWit vs Bitcoin unlimited on: January 31, 2017, 03:28:29 AM
And yet conveniently that can't be shown at all if a larger blocksize is never put on the testnet.  An easy way to delay a proposal indefinitely is for the developers to simply never test it.   Roll Eyes
I think in the near future we're going to see a compromise solution, where BU puts it on the testnet and never tests it, like Classic did 6 months ago with BIP109. For those who don't remember, an invalid BIP109 block mined on testnet (by bitcoin.com, if anyone's surprised by that fact) was rejected by Classic but accepted by Core (which doesn't care about BIP109), causing Classic to reject the majority chain. This would have been an unmitigated disaster had it occurred on mainnet, but since it was on testnet, it went completely unnoticed for nearly a month because apparently nobody was running Classic on testnet.
1619  Other / Off-topic / Re: [FACTS] North / South = SCAM ! on: January 30, 2017, 03:38:32 PM
You have made 20 topics since 2012 when you regged.
I showed up the following year and have made 11,274 comments.
Apples to oranges. For comparison, I've made 2,869 posts and you've started 450 topics.

Maybe you should try contributing something to the forum ?
Quality over quantity.

Golden gem topics by our little Australian genius..
You're right. Those are terrible topics. I should start a topic on my new favourite method of tying neckties, which has long been covered up by a conspiracy among sartorialists. That would be more in line with the kind of topics you seem to like.

You all want me to post proof but why should i bother ?
Take my word for it or don't..
Nobody asked you to post proof. You're announcing what the whole world already knows and children are taught in school and pretending it's some kind of secret or occult knowledge. Everybody already knows about the difference between true north and magnetic north, and that the poles shift positions, and everything else you've said in this thread. Except for the part about up and down being a scam. Nobody knows what that part's all about.
1620  Other / Off-topic / Re: [FACTS] North / South = SCAM ! on: January 30, 2017, 11:45:31 AM
I have never met a person who adjusts their compass.
You've never met a pilot or sailor?

I own one and never "adjusted" for it..
You must never have used it then, since it's hard to avoid noticing that it's always at least a few degrees off depending on where in the world you are.

Merit badge ?
You mean sharing some interesting science info is bad or what ?
Why do people post anything here ?
Would you be happy if there was more account farming shit posting ?
I think so.. because you say fuck all to them or about them ever..
Yet you miraculously show up here mouthing me off for the millionth time trolling me
..trying anyway.

Every time you just make yourself look like an ass arguing confirmed provable facts.
These particular facts are confirmed and provable by Girl Scouts. Next you're going to post your "amazing discovery" that it's possible to start a fire without matches or a lighter.
Pages: « 1 ... 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 [81] 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 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 ... 224 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!