Bitcoin Forum
July 04, 2024, 07:20:29 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 [333] 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 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 ... 591 »
6641  Bitcoin / Bitcoin Technical Support / Re: change address is not associated with account - what a hell ? on: May 07, 2016, 06:55:55 PM
Probably a bug in the accounts system which is slated for removal anyways. It is deprecated and no longer supported.
6642  Bitcoin / Development & Technical Discussion / Re: [solved]How decode raw transaction? on: May 07, 2016, 06:54:38 PM
This explain a bit. How locate useful data? The block data before OP_CHECKSIG?
What do you mean "block data before OP_CHECKSIG"?
6643  Other / Meta / Re: Test post on: May 07, 2016, 06:18:49 PM
I have posted before, but now all i get is the wait 360 seconds message even after waiting 30 mins still the same.
Any reason i could post, but not anymore?
Every time you try to post, the timer resets.
6644  Bitcoin / Development & Technical Discussion / Re: [solved]How decode raw transaction? on: May 07, 2016, 06:18:00 PM
My example:
First transaction of block 200'000:
bitcoin-cli getrawtransaction dbaf14e1c476e76ea05a8b71921a46d6b06f0a950f17c5f9f1a03b8fae467f10
This is a coinbase transaction so it is special. Conbase transactions are always the first transaction of a block.

I don't know why in first script first opcode is 3? Pushes 3 bytes to stack? why?
It pushes three bytes which is the block height in little endian format. The remainder of the script is arbitrary data that the miner includes in the script. This usually is where the extra nonce goes and the miner will put info to identify who mined the block.

Second script : 0x41: pushes 65 bytes? but while script has 65 bytes
The script is 67 bytes. Then 65 bytes are pushed. This pushes the pubkey of the address this output is for. The last byte is OP_CHECKSIG.
6645  Bitcoin / Project Development / Re: Bitcointalk Account price estimator on: May 07, 2016, 06:08:04 PM
What is the difference between normal and merchant? I can't get it
Normal will display all of the information for the account. Merchant hides some of it to prevent buyers from knowing what the actual account being sold is but it still allows them to see some stats about the account being sold.
6646  Bitcoin / Bitcoin Technical Support / Re: What is binary format blk00NNN.dat files on: May 07, 2016, 04:24:51 AM
Maybe is possible to avoid reading indices?
I first read headers of all block, next I compute hash (how fields use specifically to compute hash besides nonce?, next I will build chain tree and select the longest chain.

Sure, you can do it that way too. Each block is the 4 byte magic bytes, then the size of the block, then the block in raw format. The first 80 bytes is the header and that is hashed using sha256d. The output is then represented using little endian. The rest of the block is just the transactions. For full info on the serialized format, see https://bitcoin.org/en/developer-reference#serialized-blocks
6647  Other / Beginners & Help / Re: Bitcoin doubts for an average person on: May 06, 2016, 09:48:23 PM
Ok, thanks everyone for all the advices.
I have been doing for research and it seems that cex.io is the best way to buy bitcoins from my country, they charge 3.9% plus 0.25 cvs when buying with my credit card, but I don't feel quiet safe because they ask me for a photo holding my credit card, is that ok? what do you think?

Also because it seems a little complicate and not to easy to check my balance and keep buying or expending, I think I am just gonna go with electrum, they do offer encryption, so it seems safe, but what happens if my mac crashes, like two days ago I had to format it.

So if in the future I lose all my electrum files, and I just have my seed, I would be able to recover all my money?
Yes. The seed can be used to import your wallet to any new install of Electrum because all of your addresses are based upon that seed.
6648  Economy / Web Wallets / Re: Wallet problem? on: May 06, 2016, 09:21:20 PM
something went wrong....i had 0.0257BTC and i send BTC0.025, but it seems that app sent all without fee...or wrong fee was calculated..

https://blockchain.info/tx/228f25f6cf10b30956678fa3b60b8212dff4b82b5507f979fefea5e09f7c067e
Your transaction paid a fee of 0.0001 BTC, which, for the size of your transaction, is very small. Your transaction is 8935 bytes, which means that you are paying about 1 satoshi per byte, a very low fee. The current recommended is about 20 satoshs per byte (https://bitcoinfees.21.co/).
6649  Economy / Web Wallets / Re: Wallet problem? on: May 06, 2016, 08:47:51 PM
What service are you using? There is nothing that users here can do. All you can do is to contact support of whatever online wallet you are using.

As for the medium priority transaction, Blockchain.info's time estimates are usually wrong. If you need help with confirming a transaction, then it we need to know what the transaction id of it is.
6650  Bitcoin / Bitcoin Technical Support / Re: What is binary format blk00NNN.dat files on: May 06, 2016, 08:45:33 PM
Is where description of indices files? I must maybe use https://github.com/google/leveldb to read.
There is no description of the format of leveldb files that I know of. You will have to write your own client which uses LevelDB in order to read the data from those db files.
6651  Bitcoin / Bitcoin Technical Support / Re: What is binary format blk00NNN.dat files on: May 06, 2016, 07:56:41 PM
If I must read  specific block for example 200000, in which file and which position in this file this block begin?
I must read indices, where described is indices format?
In https://en.bitcoin.it/wiki/Block I can't see block heights
I can't see block hash, only previous hash.
In blockchain are also blocks from alternative branch?

The indices for the blocks are in a separate LevelDB database. The blk*.dat files are simply where the blocks are stored, but it means nothing to the software without the database which indexes the blocks. Those indices are kept in the index folder inside of the blocks folder. Bitcoin Core will write to the disk every valid block it receives, so this does include forks and stale blocks in case of blockchain reorgs.
6652  Bitcoin / Bitcoin Discussion / Re: How do block explorers know who just mined a block? on: May 06, 2016, 07:28:16 PM
Just out of interest i was wondering how the likes of Blockchain.info and Blocktrail.com know who mined a block? 
IP address of the miner/pool node that relays the block that is solved is also available and can be compared to know mining pool addresses.
The IP address is not an identifier. Because Bitcoin is a p2p network, the ip that relayed a block is most likely not the ip of the miner.

Having miner IP out there is not a bad thing? Would think they need to have extra protocol to protect from being hacked. Did not know their was such a connection for miners,interesting.
ip addresses are public addresses. Unless your computer is not behind a firewall or not secure, than simply knowing an ip is not particularly useful. Every internet connection has an ip address, and that includes Bitcoin which uses the internet.
6653  Other / Beginners & Help / Re: Litecoin to Bitcoin 0.00827 on: May 06, 2016, 07:01:58 PM
Litecoin uses a different algorithm than Bitcoin. Mining Bitcoin is pretty much unprofitable unless you have a couple TH/s. 360 kH/s is not going be enough to make any significant amount mining Bitcoin.
6654  Bitcoin / Bitcoin Technical Support / Re: What is binary format blk00NNN.dat files on: May 06, 2016, 06:58:59 PM
The blocks are written to the disk exactly in the way that Bitcoin Core receives them. It just writes the actually block messages. What exactly are you asking?
6655  Other / Beginners & Help / Re: Bitcoin doubts for an average person on: May 06, 2016, 05:04:55 AM
I use the regular original blockchain wallet
tBTCBTC
Blockchain.info is neither regular nor the "original". The original wallet is bitcoin 0.1.0 released by Satoshi, and its successor is Bitcoin Core. So if you want to run a modern wallet that is the "original" then you are using Bitcoin Core.
6656  Other / Meta / viewing all members temporarily disabled? on: May 06, 2016, 02:02:56 AM
Why?

6657  Other / Meta / Re: URGENT: please peer review a possible back door in Bitcoin? on: May 06, 2016, 01:38:57 AM
TPTB_need_war, you cannot prove nor disprove that the Sartre text Craig Wright supposedly hashed is a collision for SHA256. The hash that he published is the exact hash that is signed by the signature that spent the Block 9 coinbase. Because calculating that hash is trivial and the signature is already public, it is reasonable and safe to assume that Craig Wright simply took that hash and claimed that it was the hash of the sartre text.

You also pointed out that he supposedly has access to a supercomputer. Even with access to a supercomputer, he would not be able to find a collision as other researchers have already tried. Simply having a lot of computing power does not mean that he can find a collision.

Alternatively, Craig could have found a vulnerability in sha256, in which case a lot more things than just Bitcoin is screwed. If Craig did not responsibly disclose such a vulnerability and instead exploited it, this would be incredibly sketchy and dishonest behavior.

The theory that the sha256 double hash is weaker than sha256 is false. It has been proven that performing multiple iterations of a hash is more secure than just one iteration. Specifically, many websites will store users passwords in the form of a multiple iteration hash. This is significantly more secure than a single iteration hash. The resulting hash of a multihash function (including multiple iterations) has the same collision resistance as the collision resistance of the weakest hash. This means that sha256d has the same collision resistance as sha256. What multiple hashes protect against is a preimage attack.





Other than the OP

How is any of this "Meta"?


~BCX~
It isn't really, it started as a complaint against the removal of his thread and then he promptly continued the thread here.
6658  Bitcoin / Armory / Re: Missing bitcoins on: May 05, 2016, 03:58:48 PM
hi everyone,

It is not working for me...
Wallet properties> Receive bitcoins, just keeps generating empty Bitcoin addresses.
That is what it is supposed to do. If you don't see your full balance, try rescanning. Continuing to get new addresses will only work if your backup didn't have all of the addresses you previously used.
6659  Economy / Web Wallets / Re: my wallet got cleaned out and questions on: May 05, 2016, 12:59:50 AM
It would be pretty strange if he changed his settings to make his account more vulnerable/ less safe
It would be pretty normal if he didn't sign up with an email, thus that setting would not be enabled by default.

Also, note how he says that
Anyways, I didn't have any secondary security enabled.


Anyways, this is a pointless argument. Either way, he probably got malware on his computer which stole his password or his private keys, or both.
6660  Economy / Web Wallets / Re: my wallet got cleaned out and questions on: May 05, 2016, 12:49:35 AM
The private keys got compromised, blockchain.info is rock solid otherwise
I beg to differ. Blockchain.info has had multiple security issues in the past. His private keys were not compromised unless he imported them. He most likely got his password stolen.

A password alone cant get you into a blockchain.info account, if you are trying to sign into your account with a new IP, you need email confirmation
[/quote]
It depends on your security settings. You don't need to have an email linked to the account and if you did, you could also have it not set to email you. It really just depends on what he set for security, and based upon previous cases, the most common issue is password theft, not private keys being compromised which is insanely difficult and almost impossible to do with a web wallet unless the service is hacked.
Pages: « 1 ... 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 [333] 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 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 ... 591 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!