Bitcoin Forum
May 04, 2024, 01:20:35 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 493 494 [495] 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 ... 589 »
9881  Bitcoin / Bitcoin Technical Support / Re: Import back up from wallet from bitcoin.org on: July 13, 2015, 08:53:26 PM
Just wait for it to finish synchronizing. Since it says that it is 2 years behind, any transactions that take place after that, e.g. things from today, won't be seen. Wait until the green bar goes away. This will indicate that it is up to date. Then, you should see you transaction and be able to send the Bitcoin elsewhere.

To import the wallet into blockchain.info, you need to use pywallet and dump the wallet to a text file. Go here: https://github.com/jackjack-jj/pywallet to download and install everything you need for pywallet. Then run it with the --dumpwallet flag and copy the output text into blockchain.info's import wallet section.
9882  Bitcoin / Bitcoin Technical Support / Re: A complete idiot's guide to child pays for parent? on: July 13, 2015, 08:00:31 PM
How would I go about that? Trying some Googling now, but this may be over my head.

Also, the receiving wallet isn't showing these pending transactions anymore. They disappeared from the transaction history there, but they're still stuck on pending in the sending wallet. What does that mean?
Can you see the transaction in block explorers like blockchain.info or blockr.io? Check a couple of them. If the transactions aren't there, that means that the Bitcoin network has "forgotten" your transaction and it is essentially as if it never existed. Switch your client to another server since the transaction is probably in its cache, and then, just resend your transaction with a higher fee and it will be confirmed.
9883  Bitcoin / Bitcoin Technical Support / Re: Problems with Bitcoin Core on: July 13, 2015, 05:25:44 PM
What was the error message? Maybe you are running out of disk space?
9884  Bitcoin / Bitcoin Technical Support / Re: A complete idiot's guide to child pays for parent? on: July 13, 2015, 02:37:35 PM
Thanks. I think I understand a little more what I'm supposed to do. The issue I'm facing at the moment is related to the particular client I'm using, I think. In the Electrum client that I'm sending from, I see the option in the preferences to "Check transaction before broadcasting," so I know what I'm looking for, but I don't see that option in the version of Electrum that's on the receiving end of the pending transactions. The original transactions were from a wallet on one computer to a wallet on another, and the second computer is using the Linux Electrum client, which apparently doesn't have this option? Hopefully that makes sense. Long story short, I don't see any option for signing or checking transactions or exporting them. All it appears I'm able to do, as far as I can tell, is send a transaction directly using the "send" button.
You will have to do it through the console and console commands. This is more difficult, but allows it to be done. Unfortunately, it seems like Electrum doesn't allow you to choose which transactions to spend so you need to find the txids and use console commands to create and sign the transaction.
9885  Bitcoin / Bitcoin Technical Support / Re: Bitcoin - Previous Tx is Unspendable error! on: July 13, 2015, 02:34:50 PM
What is the address and txid of the unspendable tx?
9886  Bitcoin / Bitcoin Technical Support / Re: How to remove change from the output record on: July 13, 2015, 02:25:12 AM
You can't, at least, not for certain unless you are the sender. The whole point of a new change address is so that people cant find out how much Bitcoin someone has left. You can guess by looking at which address is receiving the weirder number. If a transaction has two outputs, 0.15 and 0.124575, you can assume that the not even number 0.124575 is the change.
9887  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [TIME] Time [SHA-256] [Launched July 12 2015] on: July 12, 2015, 08:04:06 PM
Hello All, I am the dev for this coin. If you find any issues open an issue in the github or PM me.

JSON-RPC call failed: Method not found  Huh
For what?
9888  Economy / Service Discussion / Re: over 130 confirmations and still pending on: July 12, 2015, 05:03:24 PM
in my coin.mx account wallet.

Contact their support. I'm sure they will help you. This isn't related to Bitcoin but rather coin.mx.

They said that it is still in blockchain and if it hits them  it will immediately be credited to my account.

Ive never heard before that after 130 confirmations bitcoins wouldn't reach the address. I wanna know why

If they said "it is still in blockchain" they don't know what they are talking about as that is a meaningless statement.  Bitcoin works on inputs and outputs, not addresses.  The inputs are either spent or not.  Given it looks like there are more than 200 confirmations so far, this is a problem with coin.mx and the only people who can help are at coin.mx since they are not crediting the transfer to you.


This is what they replied:

Eric Bruaw (Coin.Mx)
Jul 12, 11:04 AM

Hello,
http://motherboard.vice.com/read/wikileaks-is-now-a-target-in-the-massive-spam-attack-on-bitcoin
article explains the delays with BTC transactions lately.
As long as you've done it correctly the coins will arrive.
Definitely not our fault.
Regards,
Eric

Heh. That's funny.

Try again and explain that your transaction has over 100 confirmations. Include a link to the txid and point out that the transaction spends to the address that they provided.
9889  Bitcoin / Development & Technical Discussion / Re: Can I run a full node on bitnodes.io and use it as a wallet ? on: July 12, 2015, 04:10:10 PM
In simple terms, I'm trying to run a hot wallet where I can query through JSON-RPC. Is that possible on bitnodes.io ?
It is possible on any VPS, provided that you configure the firewall and the Bitcoin config file properly to allow JSON-RPC queries. However, it is not recommended to make the RPC server publicly accessible since it could be vulnerable to attack and having someone steal all of your Bitcoin.
9890  Bitcoin / Development & Technical Discussion / Re: Does bitcoin PoS requires an processing center? on: July 12, 2015, 03:43:51 PM
ok, I figured out how to do the get notification about transaction, but there is one more thing -  how to match payment request and transaction?
Deductively, transaction should contain some unique id by which it will be possible unambiguously identify the payment request. There is something called OP_RETURN which is advertised as  a way to add a small junk (80bytes) of random data to the bitcoin transaction.
Is it a way to go?

Ideally each payment request returns a new Bitcoin address so that no addresses are reused. Each Bitcoin transaction has a unique ID which is a sha256 hash of the contents of the transaction. Thus, the transaction that sends to a particular address which was generated for a particular payment request is the transaction for the payment. The txid is not really necessary, but can be used to confirm that the payment was actually sent to that address if the customer provides the txid of their payment.
9891  Bitcoin / Bitcoin Technical Support / Re: Unconfirmed transaction for more then 3days on: July 12, 2015, 03:36:01 PM
Just wait. There was a spam attack and that was causing delays. Since you have a low fee on the transaction, it is lower priority and less likely to be confirmed. Next time, use a higher fee. Just wait and it will eventually be confirmed. You can also delete the transaction from your wallet and wait a few days for the network to "forget" your transaction. Then you can just send it again but with a higher fee.
9892  Bitcoin / Bitcoin Discussion / Re: Are we stress testing again? on: July 12, 2015, 03:23:02 PM
I don't know if this has been discussed, but here it goes: what is the best way to spend the outputs that spammers are leaving on well known private keys? We could try and drain their funds, a bit like f2pool did.
I tried that already with 2 of the addresses that have been spamming. It would cost 2.4 BTC fee and the transaction would be so large it wouldn't even fit in a block.
9893  Bitcoin / Development & Technical Discussion / Re: Dust outputs redeemable with obvious brain wallet keys, for what? on: July 12, 2015, 02:49:12 PM
If that is the idea, it does not work for reasons:
- further spend attempts will not be broadcasted by a node after one of the attempts is included into the mempool
- people will figure soon that miner have advantage grabbing the outputs and stop trying.

Therefore the attack, if that is the purpose, is pretty lame.
I don't think that was the purpose of the attack. However, there are thousands of those dust transactions, all of them the same size, so the client can just select inputs that haven't already been spent. Even if it double spends, it is still spam that clogs the network, which might be the idea here. Also, why would miners grab the outputs? In order to spend all of those transaction, they need to create a transaction that is larger than 1 Mb and it wouldn't be worth that much. It would be more effective for them to mine other transactions that have higher fees and they can both earn more money and confirm and clear more of the backlog.

I tried to claim those BTC along with another address that was used for spamming but the transaction required a 2.4 BTC fee.
9894  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Transactions takin up to 48h ?? on: July 12, 2015, 02:29:56 PM
Hmm. That means i can`t delete the Transaction with Bitcoin Core, but with pywallet. How does this work?
Could it not be possible to just wait for the confirmation?
I mean if 40k T are waiting... maybe im in the quie .. from 10.07.  Huh
Here is a quick guide on how to delete the transaction from your wallet with pywallet. https://bitcointalk.org/index.php?topic=35214.0
9895  Economy / Service Discussion / Re: over 130 confirmations and still pending on: July 12, 2015, 03:26:25 AM
in my coin.mx account wallet.

Contact their support. I'm sure they will help you. This isn't related to Bitcoin but rather coin.mx.
9896  Economy / Service Discussion / Re: How does blockchain.info create their node globe? + Comprehensive nodes source? on: July 12, 2015, 03:22:11 AM
But I heard most nodes are anonymous these days so any kind of mapping system wouldn't be too accurate. Is this true?
Where did you hear that? There are thousands of public nodes that accept incoming connections.

Where could I view the most comprehensive listings of nodes in the world? Is there a way to view even anonymous nodes just be looking for Sub Versions called "Satoshi"?
You can find the most comprehensive listings at getaddr.bitnodes.io. They use a crawler to connect to every node that is publicly available on the network and accepts incoming connections, which most do. They also have functions to search for specific versions and have other statistics on nodes.
9897  Economy / Service Discussion / Re: over 130 confirmations and still pending on: July 12, 2015, 03:18:17 AM
Where does it say pending? In your wallet? What wallet do you use?
9898  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Transactions takin up to 48h ?? on: July 12, 2015, 03:14:00 AM
Hi there guys,

got some problems usin the network - i`ve sended 48 hours ago 2 transactions and there are still not confirmated....   Shocked

What can i do?  Roll Eyes

regards
DavieT1337

Nothing you can do !
if your transaction is taking more than 2 days , there is not necessary that the problem is miners fee , already thousands od transactions are pending from more than 7 days , mine got struck for 3 days but finally got confirmed.
You can always from time to time check the nodes propagation (it may be changing from time to time)that your wallet is broadcasting your transaction , but no miners are confirming as soon as a miner will confirm , you gonna have it confirm.
We can delete the unconfirmed transaction and resend it with higher standard fee.
https://bitcointalk.org/index.php?topic=232979.0

You cannot delete a transaction. You must close the wallet and wait a few days until the transaction is forgotten by the network. When that happens, you won't be able to find it in any block explorer and you won't see it in your client. Then you can resend it with a higher fee.
9899  Bitcoin / Bitcoin Technical Support / Re: Can someone please include my tx from July 6 in a block? on: July 12, 2015, 03:10:46 AM
How can you delete a transaction if it has already been broadcast to the network?
Wait for a few days. Eventually it will be "forgotten" by the network if it remains unconfirmed. At that point, the transaction should disappear from your wallet and all block explorers. Then you can create a new transaction that has a higher fee so that it will be included in a block by miners.
9900  Bitcoin / Bitcoin Technical Support / Re: A complete idiot's guide to child pays for parent? on: July 12, 2015, 02:55:48 AM
This is the general principle of CPFP, and it may not be entirely correct.

Step 1: Find the txid of your unconfirmed transaction
Step 2: Calculate the fee for the unconfirmed transaction with a fee of 0.0001 BTC/Kb
Step 3: Create a transaction that spends the unconfirmed transaction to another Bitcoin address. Include in its fee the recommended fee and the fee you calculated in step 2. (e.g. fee of 0.0001 BTC for both transactions means 0.0002 BTC fee in this new one)
Step 4: Sign the new transaction.
Step 5: Push the transaction to the network. It is recommended to use http://eligius.st/~wizkid057/newstats/pushtxn.php because the mining pool Eligius is one of the only pools to implement CPFP. This will push straight to them and the rest of the network.
Step 6: Wait for someone, probably Eligius, to mine a block and include both of your transactions. This could take a couple hours since Eligius has a small percentage of the hashrate of the network.

Congrats! You now have two confirmed transactions
Pages: « 1 ... 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 493 494 [495] 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 ... 589 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!