Bitcoin Forum
June 30, 2024, 12:32:08 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 457 458 459 460 ... 546 »
8181  Bitcoin / Development & Technical Discussion / Re: Proof of Work on: December 23, 2014, 08:42:41 AM
A little intro into PoW can be found in the wiki [1], more can be found in the whitepaper[2] and the dev guide [3].
In short: you hash the header [4] which includes the nounce as well as the merkle root hash (thus a different set of transactions result in a different blockhash even if the nonce is the same) the previous blocks hash etc. (see [4] for details)


[1] https://en.bitcoin.it/wiki/Proof_of_work
[2] https://bitcoin.org/bitcoin.pdf   -  chapter 4
[3] https://bitcoin.org/en/developer-guide#proof-of-work
[4] https://bitcoin.org/en/developer-reference#block-headers
8182  Bitcoin / Bitcoin Technical Support / Re: Stuck on the frustratingly slow bitcoin network.. on: December 21, 2014, 01:30:08 PM
One solution is to aquire bootstrap.dat via the Torrent network. That will help,
-snip-

Use electrum or the Blockchain torrent

What with the necroposting? Borred?
8183  Economy / Services / Re: Pocket Dice Signature Campaign is back again! on: December 21, 2014, 08:22:41 AM
Which day is the payout day?

Last payment was on the 17th.


Payments away!
The fellow above is right. Payments were made.
https://blockchain.info/tx/16d9ece88e0ca9b33946858513e6dae0866172d46378ecdcb5e4a6e324b56135

And we still have at least 30 slots open. So come on in! Don't be shy.
8184  Other / Meta / Re: Admin: can you block link masquerading which redirect to malicious files ? on: December 20, 2014, 11:01:56 PM
-snip-
The biggest issue this brings up is adoption.. The Fraud and Theft protection that banks and credits company's provide is the main advantage they have over crypto and it is a big advantage. Every scam and theft hurt cryptocurrency adoption. If we ever plan to make Bitcoin or any coin for that matter widely accept, protection o some type need to be considered. Simply saying "Well they should know better." is not an acceptable response to theft.

If cryptocurrencies are going to be a globally accepted currency, they need to be usable and trusted, by those who may not know anything about computers other then checking their email.

The "you should know better, but we ban everyone we can catch"-approach seems to work for steam. Last time I checked they did not have problems with "adoption". Well they also restore your items in some cases... so you might have a point anyway.
8185  Other / Meta / Re: Can we get nubie jail back please. on: December 20, 2014, 03:00:09 PM
maybe rise the amount to pay with account created via tor

...which would ...
... affect legimitate users more.
8186  Other / Meta / Re: Admin: can you block link masquerading which redirect to malicious files ? on: December 20, 2014, 02:33:53 PM

Official devs:
please download the Mandatory


Attacker change the link in the quote which redirect to his malicious URL (here i put virustotal.com just for example, obviously virustotal is not malicious)

I am asking if Bitcointalk admin can do something against that

Like find a trick to automatically turn off link in quote

I understand your suggestion, but I doubt it will be done. A quote is no different from a regular post. Even if this would work via the quote tag, someone using that technique could modify the quote tag to refer a different post easily (see above).
All browsers (expect maybe mobile) offer a way to spot this. Hover over the linktext with the mouse and see where it leads. IMHO this is internet 101. Dont click a link where you have no idea where you end up. This includes shortened links, which is a perfect tool for someone to link to a fake page. The hardcore version would be to go to the URL you think the link leads by hand and copy pasta the rest of the link. E.g. if you get a stearncommunity/blabla link, you go to the page steamcommunity and copy the /blabla behind it.

I hope you found the difference...
8187  Other / Meta / Re: Admin: can you block link masquerading which redirect to malicious files ? on: December 20, 2014, 01:04:37 PM
Hello,

everything is in the title: can you block link masquerading which redirect to malicious files ?
-snip-

How do you suggest the detection of malicious files? Every time in the past I reported a link to a virus the post was removed very promtly. What exactly is your suggestion for the staff to do?
8188  Bitcoin / Electrum / Re: How do you protect your wallet and backup file? on: December 20, 2014, 12:58:43 PM
Can't I just install electrum on tails, and save it? So I don't have to get it everytime? I am not sure if I understood your last sentence.

Its possible to modify a live system before you burn it to a DVD, but its probably considered advanced.

You also talked about multisig, I don't understand what it is. Could you explain it briefly?

Multi-sig as in multiple signatures. Usually there is a single private key that signs a transaction. This signature makes it valid and allows you to spend the funds. This is basically what happens every time you spend bitcoin. You unlock your private key, use it to sign a transaction and broadcast said transaction.
The idea with multi-sig is that you need more than one private key to make a valid transaction. E.g. for escrow services a multi-sig system can be created where the seller (S) has a private key, the buyer (B) has a private key and the person doing the escrow (E) has a private key.
The typical design would be that they all create a single address and every two of them can spend the funds "2 of 3 multi-sig". These addresses would start with 3 instead of 1 like this[2]. The 3 has nothing to do with the amount of keys used. The 3 indicates that its a pay to script address [3] instead of a "normal" pay to pubkey hash address.

On the protocol level bitcoin is "just" signatures, scripts and transactions thus its possible to create an address which funds can be spend if the transaction spending them is signed by 2 of the 3 possible private keys. So in our escrow case, B sends the funds to the address, S sends the goods. If everything is how B expencted it to be B can sign a transaction and pass it to S to sign it as well and the coins are spend (usually to S).
If something goes wrong B and/or S can contact E to decide where the funds should go. Neither B nor S can spend the funds alone, thus E can listen to all arguments and finally make a decision where the funds should be send to by signing the correcsponding transaction.
E.g. OpenBazaar [1] will use this (mostly automated) as part of a mechanism to resolve dispute between B and S.

[1] https://gist.github.com/drwasho/405d51bd1b1a32e38145
[2] donation address for the darkwallet project: https://www.blocktrail.com/BTC/address/31oSGBBNrpCiENH3XMZpiP6GTC4tad4bMy
[3] https://en.bitcoin.it/wiki/Pay_to_script_hash
8189  Local / Anfänger und Hilfe / Re: Bitcoins verkaufen on: December 20, 2014, 11:59:54 AM


Ist aber leider so, dass ich es habe.

Muss ich etwa hier erläutern woher ich das Geld habe? Glaube wohl kaum.

Nein.

Natürlich meinte ich es in € auszuzahlen.

Mach nen Account bei ner Börse[1], verifiziert dich (z.B. via Meldebescheinigung), überweis die BTC dahin, tausch sie zum aktuellen Kurs und lass dir die €/$/etc. auf dein Konto auszahlen.

Hey.

Ich habe nun 4.21493811 BTC gesammelt.

Deine Begriffswahl ist einfach komisch. Wir reden hier ja nicht von Briefmarken oder Kastanien.

Gibt es eine Möglichkeit diese sicher auf ein Bankkonto überweisen zu lassen?

Sicher in bezug worauf?

"Ein" beliebiges Konto geht in der Regel nicht. Soweit ich weiß geht nur das eigene.


[1] bitcoin.de, kraken, bitstamp, etc. pp.
8190  Bitcoin / Project Development / Re: JSON-RPC - READ SENDER WALLET ADDRESS - HOW????? on: December 20, 2014, 11:53:27 AM
I ask of this because I would like to create a simple raffle/lottery/etc script using PHP which anybody can use. For this I would like to know how can I determine:

Who just send 0.01 BTC to my adress?
How do I send back the winnings to the right address?

Ask for a return address.

There is no "sender address" on the protocoll level [1].

I wan't this to be done without anybody having to register or create accounts.

I hope to get a system which can simply see: 95 people entered into the raffle, 95 recieving addresses and then return the full pot back to the winner.

What would you do if the transaction has inputs from 10 "addresses"?

I know that this may no be a simple tast because btc can be spread on various adresses, so maybe this is not the way to go, but I want this to work without an API, which may shut down and recoding made nessecary

Any ideas?

Others have failed with this approach in the past, why repeat it? Let the user create an account, deposit to your site, do the gamlbing offchain and let them withdraw when they want.


[1] https://bitcointalk.org/index.php?topic=897276.msg9877226#msg9877226
8191  Bitcoin / Development & Technical Discussion / Re: How does one get started in devlopment for Bitcoin? on: December 19, 2014, 07:30:26 PM
Thanks for the answer, I am just looking to get some practice coding so I can try and one day get a job as a programmer, everywhere I apply I don't get many call returns because everyone wants experience.  Its hard to get experience if no one gives you the chance to get some, so I want to start working on side projects to show them I can code

Get your fork... https://github.com/bitcoin/bitcoin

8192  Bitcoin / Bitcoin Technical Support / Re: Bitcoind 0.9.3 memory leak? on: December 19, 2014, 09:06:46 AM
I installed bitcoind 0.9.3 on a debian server and tried to download the blockchain, but it seems to be leaking a lot of memory.

while running bitcoind, ps says the process is using only about 700 Mb but the memory usage display on the sever keeps going up and up over time.  After I stop bitcoind most of the memory is still reported as being used even though there are no other processes using nearly that much memory.

Are you sure about this or is this an issue of your understand of "free" in regards to the understanding of linux of "free"?
see here: http://www.linuxatemyram.com/

Also the rate that it is downloading blocks has slowed to something like 1 per second.

To increase sync speed use the torrent.

Is it possible that this is caused by an error in my bitcoin.conf?

I doubt it. You can set e.g. dbcache to 4 in order to lower the impact on memory used (actually used).
8193  Other / Meta / Re: [REPORT] ~ Please *stop* this user on: December 19, 2014, 08:56:46 AM
I'm sorry , but I've reported this users a few day ago ( If I'm not wrong)  :

https://bitcointalk.org/index.php?action=profile;u=374921

But he wasn't banned , so I think his  posts are fine for the forum .

Look at his post history before today and you'll see a suspicious gap exactly a week long in which he wasn't posting. Just saying.  Wink

That user is back with ~43 one liners just today. Guess someone didnt get the message.


Modlog is two weeks.  


When I look at the modlog, one of the last entries I see is this
Nuke user: N/A in topic #0 by member #402358
This user registered on this forum on 12-Dec-14. Assuming he was nuked immediately afterwards, I am able to see entries for maximum 7 days.

Are there additional pages which I am missing?

Weird, it used to be 2 weeks.

IIRC there is also a limit to the number of entries shown, not sure if theymos said that or I imagined it though.

All I could find with a quick search was that the listed bans are apparently permabans.

All bans listed on that page are permanent.
8194  Bitcoin / Bitcoin Discussion / Re: What do you guys think about this method to safely store your Bitcoin? on: December 19, 2014, 08:48:50 AM
-snip-
Does anybody see a flaw?
I haven't really tried it out, so there might be something in it.

Not really...



Lets make some assumptions and see where we end up. You do the steps given and we assume that I was able to take over your machine (the one you use in step 1) with a rootkit. Possible actions would be:

#1 I manipulate the source from bitaddress.org while/directly after you download it (signatures/public keys are replaced ofc)
#2 I manipulate tails
#1 and #2 can result in the following: You actually have a private key I dont know, but I just replace the address with one (or several) of mine, thus the moment you send funds to "your private key", I own them.
8195  Economy / Services / Re: Silver Wallets Signature Campaign on: December 18, 2014, 06:13:37 PM
Oh lord. I wish I had participated, but I wasn't a Hero member at the time. It looks so good! Shocked

Joined as Senior, still worth it.

8196  Bitcoin / Bitcoin Technical Support / Re: Problem running a connectable full node after 24h disconnect on: December 18, 2014, 05:41:22 PM
Thanks for clarification.

I think there are a lot of users affected which use their home server to host bitcoind behind a dynamic address and are probably not aware of this bug.

Found it [1] its almost 4 years old now and it was worse back then, but the core problem still exists. I dont know how difficult it would be to create an external command (e.g. bitcoind rescanownip) that is executing the code needed to detect the local IP.

I'll use a cronjob for a daily restart as a work around.

That should work. Esp. if the disconnectes are at a fixed time.


[1] https://github.com/bitcoin/bitcoin/issues/48
8197  Bitcoin / Bitcoin Discussion / Re: Why is my transaction not being processed? on: December 18, 2014, 05:30:25 PM
I see something like this for the first time, is it possible to set your own fee price?  Roll Eyes

Depending on the wallet you use, yes.
8198  Bitcoin / Bitcoin Technical Support / Re: Problem running a connectable full node after 24h disconnect on: December 18, 2014, 04:49:26 PM
Hi,

I have already posted this to reddit but sadly did not get any reply so I am trying it here now.

I am running a full node and it's working fine until the 24 hours adsl disconnect (NAT with port forwarding enabled). But I don't get any incoming connections after the disconnect. I think the problem is that my new external ip address is not dicovered:

Yes, its a known problem. It was discussed on github a while back and the core devs decided that not enough people have the problem to care about it IIRC.

-snip-
Is there any way to tell bitcoind to check my external ip regulary? I did not find any setting in bitcoin.conf

Nope, unless you restart it. There is currently no way to reinitiate the initial "whats my IP?" code.
8199  Bitcoin / Bitcoin Discussion / Re: Why is my transaction not being processed? on: December 18, 2014, 04:31:00 PM
https://blockchain.info/address/1Ho9neW62ZEk8aZeWL1mfQHfCmbxQzS9Cj

What's the problem? I paid a fee, and there have been plenty of blocks since I broadcast the transaction? What the hell?

I think u r talking about

https://blockchain.info/tx/00794e6384dc395c5688ed0a59500e8a9c21d82cc6c50bc2c3078719480cd0db

As I can see, u have paid 0.00003 BTC as fee, which is below standard. 0.0001 BTC is the standard fee.

This, but the size of the transaction (2876 bytes) would suggest that 0.0003 would be a proper fee to get it confirmed fast. It would also help if the biggest input [1] would be more mature (older) but its very young.

It will confirm... eventually.


[1] https://blockchain.info/tx-index/72225792/1
8200  Bitcoin / Bitcoin Technical Support / Re: How to get all inbound and outbound transactions addresses? on: December 18, 2014, 11:57:00 AM
How to get all inbound and outbound transactions addresses?

There is no outbound transaction, just unspend outputs of other transactions which could be decoded into the receiving address(es).

Which command sequence should be used?

decoderawtx [1]


[1] https://en.bitcoin.it/wiki/Raw_Transactions#decoderawtransaction_.3Chex_string.3E
Pages: « 1 ... 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 457 458 459 460 ... 546 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!