Bitcoin Forum
May 24, 2024, 08:39:32 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 ... 590 »
8821  Bitcoin / Bitcoin Technical Support / Re: can't sync database.. always different error messages on: October 12, 2015, 09:22:45 PM
It looks like one of the blocks is corrupted, so you will actually need to resync. The easiest way is to just delete the blocks folder in the data directory. But that takes the most amount of time. You could try to find which blk.dat file contains the problem block, which in your case, looks like 303256. If you can figure out which blk.dat file it is in, then delete that file and all of the higher number files after it. You will still need to download some blocks, but not all of them. A reindex will also be required if you do that.
8822  Bitcoin / Bitcoin Discussion / Re: Vulnerability in UPnP library used by Bitcoin Core !! on: October 12, 2015, 08:47:15 PM
what's the point of setting it to zero in the config if you remove the checkbox on the option menu? they should perform the same thing

also i don't use a config at all for core...

I think you only have to select one of the options to protect your wallet from the vulnerability. Each option should protect your wallet on its own. Bitcoin.org recommends updating your wallet to the latest version. It says 0.10.3 and 0.11.1, and the upcoming 0.12.0 are safe to use. You only need to upgrade if you downloaded a compiled wallet, if you built your wallet yourself it should have UPnP disabled by default.

there is no 0.11.1 apparently, i found that they are at rc2 for this version, on a shady website, or at least it seems so...
Neither of them have been released yet. They are still in the release candidate stage.

0.11.1rc2 is officially available at https://bitcoin.org/bin/bitcoin-core-0.11.1/test/
0.10.3rc2 is officially available at https://bitcoin.org/bin/bitcoin-core-0.10.3/test/
8823  Bitcoin / Bitcoin Discussion / Re: Vulnerability in UPnP library used by Bitcoin Core !! on: October 12, 2015, 06:58:56 PM
what's the point of setting it to zero in the config if you remove the checkbox on the option menu? they should perform the same thing

also i don't use a config at all for core...
For the daemon if you don't use core.
8824  Bitcoin / Wallet software / Re: Bitcoin Wallet for iOS???? on: October 12, 2015, 04:08:54 PM
Go to https://bitcoin.org/en/choose-your-wallet and choose ios. There are many wallets.
8825  Bitcoin / Bitcoin Discussion / Vulnerability in Miniupnpc library used by bitcoin core on: October 12, 2015, 03:52:05 PM
Apparently the miniupnpc library that bitcoin core uses has a buffer overflow library which makes it possible for someone in the local network to crash bitcoin nodes on that network. It may also be possible to carry out other attacks, but that has not yet been confirmed.

More info here: https://bitcoin.org/en/alert/2015-10-12-upnp-vulnerability
8826  Bitcoin / Bitcoin Technical Support / Re: Ful node on Raspberry Pi on: October 12, 2015, 02:11:23 PM
I think it should work since bdb is only for the wallet.

Also, recompiling will not require a resync since your aren't deleting the data directory with the blockchain.
8827  Bitcoin / Project Development / Re: Guide transactions between two entities on: October 12, 2015, 02:09:31 PM
Yes, anything you can do in regtest can be done on mainnet.
8828  Bitcoin / Bitcoin Technical Support / Re: Updating a database when my wallet receives a payment. on: October 12, 2015, 11:56:05 AM
Hi guys I want to create a simple linux cloud server which contains a database and some kind of script which updates the database when my BTC wallet receives a payment. It would be able to update the database with information such as the public key of the person who paid the BTC and the amount paid. Blockchain.info offers a service like this: https://blockchain.info/api/api_receive However the only libraries available are in PHP and Java both of which are foreign languages to me. I am a Python developer. Does anyone have any suggestions on how to do this or whether I am thinking about this completely wrong.

Thanks!

Hello jdeepee,

i strongly recommend you to NOT USE blockchain.info API for deposit/accounting stuff.
You should use a own local node (bitcoin daemon) on your project. You can of course use python
for communication with your wallet over rpc-calls.

more informations:
https://github.com/jgarzik/python-bitcoinrpc
https://en.bitcoin.it/wiki/API_reference_(JSON-RPC)#Python

ca333



If your project is experimental and no user funds are affected you can also use python to communicate
with the API of blockchain.info. This is not limited on php/Java.
For example in my project r-scan i use python and simply make http requests and then parse json data (API-response). see https://github.com/ca333/rng-scanner


If I want to send bitcoins to multiple wallets is it recommended I do this through the Bitcoin daemon as-well or can I just use blockchain.info's API?
You should really just do everything through bitcoin, it is pretty much the same functionality.
8829  Bitcoin / Bitcoin Technical Support / Re: Problem on getting peers on: October 12, 2015, 11:54:59 AM
Can you post the Debug.log?

Also check your firewalls that they are allowing port 8333 both in and out.
8830  Bitcoin / Bitcoin Technical Support / Re: how my wallet contacts the bitcoin network? on: October 12, 2015, 01:20:03 AM
thanks for that.

yes, i know all that, BUT how my wallet knows which Nodes to contact?


Like bit torrent, when i load a torrent in my Mac, it goes to a server/tracker and that tracker connects me to all the peers sharing that torrent; that tracker knows who are the peers/nodes because i don't!

in bitcoin who is this tracker? who plays this role? how my wallet knows who are the NODES?
The client comes with a large number of nodes hard coded (called seed nodes) which are nodes that are known to have good uptimes and been up for a while. The data is compiled from what are called DNS seeds, which are a set of servers which are also hard coded. The node also keeps its own database of peers to connect to.

On startup, the nodes first checks its own database of nodes. If it cannot connect to any nodes there, it queries the DNS seeds. The DNS seed servers will respond with nodes that are available for the node to connect to. If it happens to not be able to connect to those nodes, it will fallback to the hard coded seed nodes.

The list of DNS seeds can be found here: https://github.com/bitcoin/bitcoin/blob/master/src/chainparams.cpp#L98
These are the current DNS seeds:
Code:
vSeeds.push_back(CDNSSeedData("bitcoin.sipa.be", "seed.bitcoin.sipa.be")); // Pieter Wuille
vSeeds.push_back(CDNSSeedData("bluematt.me", "dnsseed.bluematt.me")); // Matt Corallo
vSeeds.push_back(CDNSSeedData("dashjr.org", "dnsseed.bitcoin.dashjr.org")); // Luke Dashjr
vSeeds.push_back(CDNSSeedData("bitcoinstats.com", "seed.bitcoinstats.com")); // Christian Decker
vSeeds.push_back(CDNSSeedData("xf2.org", "bitseed.xf2.org")); // Jeff Garzik
vSeeds.push_back(CDNSSeedData("bitcoin.jonasschnelli.ch", "seed.bitcoin.jonasschnelli.ch")); // Jonas Schnelli
8831  Bitcoin / Bitcoin Technical Support / Re: how my wallet contacts the bitcoin network? on: October 11, 2015, 04:39:41 PM
No, Bitcoin doesn't work like that. Everything is distributed, there is no central server. Every full node will receive every block and transaction and verify and validate to the consensus rules before relaying transactions that pass to its peers. Full nodes store all of the unconfirmed transactions in its mempool, a database in the memory. Miners will query this database (usually through something like getblocktemplate) and select a number transactions to include in a block. Once those transactions are included in the block, the block is broadcast through the node and those transactions are removed from the database. That is how miners know what transactions to mine.

Some wallets are not full nodes, but use what is called Simplified Payment Verification. Some SPV wallets, like those based on bitcoinj, will connect to full nodes. They do not receive every transaction and block and they do not relay transactions. SPV wallets assume that the data given to them by full nodes is valid. They request data from full nodes through bloom filters, which means that they will receive the data that they want and sometimes more than they need just to make sure that the full node cannot actually know what addresses the SPV wallet controls.

Other SPV wallets like electrum connect to a server for their data. It behaves exactly like a full node, but is a dedicated server for electrum. There are many of these servers and the user can choose which one they want to connect to. Those servers are run by volunteers.
8832  Economy / Gambling / Re: Diggit.io | Over Dice? | Brand new game! | 800+ BTC Invested! | 1% Edge on: October 11, 2015, 04:03:25 PM
Everyone should report Diggit to the US authorities.   This site is hosted by Cloudflare in the US.   Bound by US anti-gambling laws,  and operators will be prosecuted.  

http://www.ic3.gov/default.aspx

http://www.justice.gov/criminal-ccips/reporting-computer-internet-related-or-intellectual-property-crime

Report bitcointalk too as they are complicit in this criminal operation.



I think you are in great shock by losing some on this site but that is your fault you should choose carefully by doing responsible gambling it seems you are not aware of this, i will advice you open scam accusation against diggit if you have been scammed by this site and this is better way to ruin this site popularity and let other people about this.

Dear STUPID MORON,  I did not LOSE the money.  I tried to withdraw it and I did not receive it.    I deposited the 5 million Satoshi,  and then when it took 4 hours to credit to my account I came on here and saw everyone posting about how the site is crap and will rip you off.  So as soon as my 5 Million Sat was credited to my account 4 hours later, I put in a withdrawal request.    The withdrawal did not ever go through but the 5 million was taken from my balance.   It's been over 2 days and nothing.  I have contacted the admin multiple times with no response.

So why don't you shut your stupid fucking face and learn to fucking read before you come on here talkign shit you dumbass moron retarded piece of shit.


Just for you, I have opened up a scam accusation against diggit.io, primarily for their failure to process withdrawals. You can check out the thread at https://bitcointalk.org/index.php?topic=1205470.0 and please post information that will help with the accusation, not just ranting.
8833  Other / Beginners & Help / Re: My girlfriend has questions for the forum... on: October 11, 2015, 02:49:10 PM
1) How do people think that bitcoin is actually anonymous? You would have to buy them with your debit card/credit card in which banks have your information... why would you think that this stuff is actually anonymous and could be used in such a way?

There are other fairly anonymous ways to buy bitcoin like from forum members or other face-to-face deals. After you have bought bitcoin, there are also means to loose the trail of your coins, making it harder for people to track your spending and ownership. Some would tell you that bitcoin is pseudo anonymous, I would say you can make bitcoin as anonymous as you need.

Just be careful buying bitcoins face to face in the US using localbitcoins. The newest fashion over there are undercover agents that are meeting people over localbitcoins and then arresting them and charging them. Freaking unbelievable!

Is that for real? I would imagine that that would only be applicable to people in NY due to the new laws regarding Bitcoin... Right?
I don't think so, just don't buy a lot at one time. Also be careful of people who will try to run with your money. Always to face to face transactions in a public place where there are lots of witnesses.
8834  Bitcoin / Bitcoin Technical Support / Re: Another Ubuntu Question on: October 11, 2015, 02:47:48 PM
Are you sure it isn't just that the /cdrom mount point is only for root? How about changing the mount point to somewhere you know that you have access? Try making a folder in your home directory and mount the partition there.
8835  Bitcoin / Bitcoin Technical Support / Re: install bitcoin-qt on: October 11, 2015, 02:44:18 PM
Hello everybody
When I install new bitcoin-qt, it take 1 week or more time to sync network
What way fast sync network more, like 1 day?
Thanks
There is no way to sync any faster. Just wait, and it will be synced. You only need to sync it once.
8836  Bitcoin / Project Development / Re: bitcoind for many website on: October 11, 2015, 02:43:29 PM
Hello everybody!
how can I connect many website with 1 bitcoind ?
example:
http://domain1.com
http://domain2.com
http://domain3.com
how bitcoind callback for each website separate?
Thanks
Just connect them normally and use RPC to get data from bitcoind. There are by default 4 rpc threads so you can have 4 concurrent requests. This can be increased as needed.
8837  Bitcoin / Project Development / Re: hide connect rpc in code on: October 11, 2015, 02:42:24 PM
Hello everybody!
When I use php connect with bitcoind via rpc
I must write user/password rpc in code
problem: when hacker hack code, they will get my bitcoin.
how can I hide connect rpc in code?
Make sure you setup the rpc so that both port 8332 is not available from the outside and that the rpc server only accepts connections from whatever ip the webserver is hosted on. (probably localhost)
8838  Bitcoin / Armory / Re: Creating multiple receiving addresses on: October 11, 2015, 01:24:11 AM
This thread should help: https://bitcointalk.org/index.php?topic=603797.0
8839  Other / Beginners & Help / Re: My girlfriend has questions for the forum... on: October 11, 2015, 01:11:24 AM
1) Sure, that part isnt anonymous, but transacting bitcoin to bitcoin is anonymous, as it only provides the bitcoin adress.

It is actually pseudonymous, you sometimes can trace a bitcoin address to an identity, it is just very very very hard.

What about those buys coins from exchanges where exchanges requires identification before you can buy bitcoins, isn't that already exposing your self that you are a Bitcoin user?
yes, but sir_lagsalot was talking about bitcoin transactions, which can be traced back to an identity, just not very easily (in most cases).
8840  Other / Beginners & Help / Re: My girlfriend has questions for the forum... on: October 11, 2015, 01:05:24 AM
1) Sure, that part isnt anonymous, but transacting bitcoin to bitcoin is anonymous, as it only provides the bitcoin adress.

It is actually pseudonymous, you sometimes can trace a bitcoin address to an identity, it is just very very very hard.
Pages: « 1 ... 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 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 ... 590 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!