Bitcoin Forum

Economy => Web Wallets => Topic started by: Weed! on February 25, 2015, 06:03:25 PM



Title: BlockChain Problem
Post by: Weed! on February 25, 2015, 06:03:25 PM
https://i.imgur.com/X4PnUMo.png


Title: Re: BlockChain Problem
Post by: shorena on February 25, 2015, 06:04:43 PM
If its not confirmed its not yours to spend, wait.


Title: Re: BlockChain Problem
Post by: Rannasha on February 25, 2015, 06:05:53 PM
The problem is mentioned right there in the screenshot: Your funds are still pending confirmation. You've probably received the 2.5 BTC very recently on this account and the transaction hasn't been confirmed yet.

If the sender included the proper transaction fee, it should be done within an hour. If no fee was included, it might take up to one or two days.


Title: Re: BlockChain Problem
Post by: Weed! on February 25, 2015, 06:09:44 PM
I don't think so it's confirmed maybe my last transaction is doing this ?

https://blockchain.info/es/address/1P7gsbyDeKTgwrpEC5TduNRGbZV5abuv5D


Title: Re: BlockChain Problem
Post by: Weed! on February 25, 2015, 06:22:51 PM
Help please.. I can't use a single satoshi


Title: Re: BlockChain Problem
Post by: shorena on February 25, 2015, 08:23:36 PM
I don't think so it's confirmed maybe my last transaction is doing this ?

https://blockchain.info/es/address/1P7gsbyDeKTgwrpEC5TduNRGbZV5abuv5D

Yes. You send 4 satoshi[1] which is below the dust limit, thus your transaction is considered non-standard.

[1] https://blockchain.info/tx/b96f736e798fa221b316ee73ef5a2401a12fdf2a7cd40068fd3f6633df1c9acd?show_adv=true


Title: Re: BlockChain Problem
Post by: carlosiness on February 25, 2015, 08:26:22 PM
i believe you need just to wait for some days and it will disappear


Title: Re: BlockChain Problem
Post by: Krona Rev on February 25, 2015, 09:01:53 PM
Hi. I'm assuming 1P7gsbyDeKTgwrpEC5TduNRGbZV5abuv5D is your address. (To be precise, I assume you have the private key for the address.)

Here's how you can (probably) speed up getting this nonstandard transaction confirmed and making a payment to 1EG... of 0.054... btc.
It's a little technical and will require you to use the Satoshi client's debug console.

1. Create a raw transaction spending the change output from your unconfirmed transaction to the address you want plus the rest of your btc in change back to yourself. (DO NOT FORGET THE CHANGE OUTPUT OR YOU WILL LOSE YOUR BTC.) You should also include an unusually large fee to encourage a miner to take confirm both it and the previous transaction. Here's a partial version with roughly 1.7 mbits as a fee. (It's "partial" because I can't read the full 1EG... address.)

createrawtransaction '[{"txid":"b96f736e798fa221b316ee73ef5a2401a12fdf2a7cd40068fd3f6633df1c9acd","vout":1}]' '{"1EG...":0.05446166,"1P7gsbyDeKTgwrpEC5TduNRGbZV5abuv5D":2.446}'

2. Sign the transaction with the private key for 1P7...

signrawtransaction <OutputFromStep1> [] '["yourprivatekey"]'

3. Send the raw transaction to the network.

sendrawtransaction <OutputFromStep2>

I hope this helps. There may be other tools for doing this than the Satoshi client. I'm only telling you the way I'm familiar with. If you have any questions I should be online for another hour or so.

I've done this kind of thing before...but...

Disclaimer: This post is for informational purposes only. I am not responsible if anything goes wrong.