Bitcoin Forum
May 05, 2024, 10:34:28 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: 1 2 [All]
  Print  
Author Topic: WHY can't I send funds from my wallet  (Read 1783 times)
RobertRibbeck (OP)
Full Member
***
Offline Offline

Activity: 221
Merit: 100


View Profile
March 05, 2013, 02:26:36 AM
 #1

I've got 3.75btc I want to transfer to MtGox

I'm getting some bs error from bit coin-Qt that is preventing any xfer of funds to below 3.5

I had 5btc and was able to sent mtgox 1.25btc    but NOT ANYTHING more

WTF

Please "Clear your browser cookies" then use http://bitcoinpyramid.com/r/3360 to Join BitCoin Pyramid
  use my referral & I'll refund a % of your first deposit back to your account
  Deposit .5 BTC or more and I'll give back 50% of what I receive

First Deposit of 1 BTC will get 75% of what I get back
1714905268
Hero Member
*
Offline Offline

Posts: 1714905268

View Profile Personal Message (Offline)

Ignore
1714905268
Reply with quote  #2

1714905268
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, which will follow the rules of the network no matter what miners do. Even if every miner decided to create 1000 bitcoins per block, full nodes would stick to the rules and reject those blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714905268
Hero Member
*
Offline Offline

Posts: 1714905268

View Profile Personal Message (Offline)

Ignore
1714905268
Reply with quote  #2

1714905268
Report to moderator
1714905268
Hero Member
*
Offline Offline

Posts: 1714905268

View Profile Personal Message (Offline)

Ignore
1714905268
Reply with quote  #2

1714905268
Report to moderator
John (John K.)
Global Troll-buster and
Legendary
*
Offline Offline

Activity: 1288
Merit: 1225


Away on an extended break


View Profile
March 05, 2013, 02:27:49 AM
 #2

I've got 3.75btc I want to transfer to MtGox

I'm getting some bs error from bit coin-Qt that is preventing any xfer of funds to below 3.5

I had 5btc and was able to sent mtgox 1.25btc    but NOT ANYTHING more

WTF
Please quote the 'bs error' here, otherwise how on earth can we help you on this?
RobertRibbeck (OP)
Full Member
***
Offline Offline

Activity: 221
Merit: 100


View Profile
March 05, 2013, 02:30:59 AM
 #3

transaction creation failed


I've got 3.75btc I want to transfer to MtGox

I'm getting some bs error from bit coin-Qt that is preventing any xfer of funds to below 3.5

I had 5btc and was able to sent mtgox 1.25btc    but NOT ANYTHING more

WTF
Please quote the 'bs error' here, otherwise how on earth can we help you on this?

Please "Clear your browser cookies" then use http://bitcoinpyramid.com/r/3360 to Join BitCoin Pyramid
  use my referral & I'll refund a % of your first deposit back to your account
  Deposit .5 BTC or more and I'll give back 50% of what I receive

First Deposit of 1 BTC will get 75% of what I get back
deepceleron
Legendary
*
Offline Offline

Activity: 1512
Merit: 1028



View Profile WWW
March 05, 2013, 07:06:51 AM
 #4

I agree, it is a B.S. error.
It really should say "insufficient funds to cover the cost of the transaction and all associated fees".

Code:
if (nValue + nFeeRequired > GetBalance())
    strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds!"), FormatMoney(nFeeRequired).c_str());
[b]else[/b]
    strError = _("Error: Transaction creation failed!");

It gets to "transaction creation failed" only if the balance equal to or more than value + fee. The transaction has failed for some other reason.
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
March 05, 2013, 01:10:21 PM
 #5

It gets to "transaction creation failed" only if the balance equal to or more than value + fee. The transaction has failed for some other reason.

Yeah, I see that.  I really need to pay closer attention to the direction of that > symbol.

Looks like there are a variety of potential issues:

Too many really tiny outputs in your wallet could result in a transaction that is too big (This is the most likely problem):
Code:
if (nBytes >= MAX_BLOCK_SIZE_GEN/5) return false;

Otherwise:

Perhaps a failure signing the inputs?
Code:
if (!SignSignature(*this, *coin.first, wtxNew, nIn++)) return false;

Or an issue selecting the coins to be used?
Code:
if (!SelectCoins(nTotalValue, setCoins, nValueIn)) return false;

RobertRibbeck (OP)
Full Member
***
Offline Offline

Activity: 221
Merit: 100


View Profile
March 05, 2013, 01:36:56 PM
 #6

Guess you Cant read   or maybe 3.75btc isn't enough to cover a 2.5 btw xransfer to MtGox

I agree, it is a B.S. error.
It really should say "insufficient funds to cover the cost of the transaction and all associated fees".

Code:
if (nValue + nFeeRequired > GetBalance())
    strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds!"), FormatMoney(nFeeRequired).c_str());
[b]else[/b]
    strError = _("Error: Transaction creation failed!");

Please "Clear your browser cookies" then use http://bitcoinpyramid.com/r/3360 to Join BitCoin Pyramid
  use my referral & I'll refund a % of your first deposit back to your account
  Deposit .5 BTC or more and I'll give back 50% of what I receive

First Deposit of 1 BTC will get 75% of what I get back
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
March 05, 2013, 01:55:41 PM
 #7

Guess you Cant read   or maybe 3.75btc isn't enough to cover a 2.5 btw xransfer to MtGox

Prior to you posting this I had already pointed out that I made a mistake looking at the direction of the > symbol, and I had already deleted that errant post.

As for the fee, if your wallet is filled with extremely small outputs, then it can most certainly require a fee larger than 1.25 BTC to send 2.5 BTC.

I believe the fee is 0.0005 per kilobyte?

So, if that 2.5 BTC is made up of more than 2,500 inputs, you can't send it.

As I pointed out in my update, the more likely problem is that the transaction is too big.

If the transaction has so many inputs that it is larger than 100 kilobytes, you can't send it.  Since a typical input is larger than 40 bytes, you'll run into the maximum transaction size before you run out of funds for the fee.
Brunt, FCA
Member
**
Offline Offline

Activity: 68
Merit: 10



View Profile
April 20, 2013, 10:51:01 AM
 #8

I have a similar problem to this.
I tried to send the contents of my wallet, around 600 mBTC, consisting of around 2900 bitdust transactions, and received the message:
Error: Transaction creation failed!
I understand the reason.
Quote
As I pointed out in my update, the more likely problem is that the transaction is too big.
If the transaction has so many inputs that it is larger than 100 kilobytes, you can't send it.  Since a typical input is larger than 40 bytes, you'll run into the maximum transaction size before you run out of funds for the fee.
What is the best way to deal with this?
BookLover
Hero Member
*****
Offline Offline

Activity: 533
Merit: 500


^Bitcoin Library of Congress.


View Profile
April 20, 2013, 02:14:35 PM
 #9

If you send smaller transactions to yourself you can combine the dust transactions and create larger inputs.  This may not work if the dust inputs are to small.

Brunt, FCA
Member
**
Offline Offline

Activity: 68
Merit: 10



View Profile
April 20, 2013, 04:28:54 PM
 #10

Quote
If you send smaller transactions to yourself you can combine the dust transactions and create larger inputs.
OK, I've sent the largest amount that I was able (200 mBTC, with a fee of 16 mBTC) to a new address in my wallet. If I try to move any of the remainder, it will be largely eaten up by high fees.

It seems to me that this problem is going to affect tens of thousands of users who are frantically collecting as much bitdust as they can from all the free BTC websites. They will end up with a large balance that will be difficult or impossible to spend.
deepceleron
Legendary
*
Offline Offline

Activity: 1512
Merit: 1028



View Profile WWW
April 20, 2013, 04:59:34 PM
 #11

Quote
If you send smaller transactions to yourself you can combine the dust transactions and create larger inputs.
OK, I've sent the largest amount that I was able (200 mBTC, with a fee of 16 mBTC) to a new address in my wallet. If I try to move any of the remainder, it will be largely eaten up by high fees.

It seems to me that this problem is going to affect tens of thousands of users who are frantically collecting as much bitdust as they can from all the free BTC websites. They will end up with a large balance that will be difficult or impossible to spend.
Solution, warn suckers not to frequent sites that dust your wallet with unspendable crap in exchange for making you click on ads at an earning rate that translates to about $0.01 an hour.
RobertRibbeck (OP)
Full Member
***
Offline Offline

Activity: 221
Merit: 100


View Profile
April 20, 2013, 05:06:12 PM
 #12

Quote
If you send smaller transactions to yourself you can combine the dust transactions and create larger inputs.
OK, I've sent the largest amount that I was able (200 mBTC, with a fee of 16 mBTC) to a new address in my wallet. If I try to move any of the remainder, it will be largely eaten up by high fees.

It seems to me that this problem is going to affect tens of thousands of users who are frantically collecting as much bitdust as they can from all the free BTC websites. They will end up with a large balance that will be difficult or impossible to spend.
Solution, warn suckers not to frequent sites that dust your wallet with unspendable crap in exchange for making you click on ads at an earning rate that translates to about $0.01 an hour.

It's not that simple
by 2040 when all coins have been produced transactions that small will be common
the current pay/transfer is way out of wack
demanding exorbitant fees for less than a min of computer time is a crime

Please "Clear your browser cookies" then use http://bitcoinpyramid.com/r/3360 to Join BitCoin Pyramid
  use my referral & I'll refund a % of your first deposit back to your account
  Deposit .5 BTC or more and I'll give back 50% of what I receive

First Deposit of 1 BTC will get 75% of what I get back
Brunt, FCA
Member
**
Offline Offline

Activity: 68
Merit: 10



View Profile
April 21, 2013, 07:49:20 AM
 #13

I made a second transfer to my new address of 110 mBTC, and the fee was 31 mBTC!
I experimented with a third transfer of 50 mBTC, but the fee would have been 40 mBTC, so I didn't go ahead with it.
Would it help at all if I left the remainder, about 245 mBTC, to age for some time?
I didn't realise that the 'bitdust problem' would be this bad.
At the moment I feel as though the contents of my wallet are being held for ransom!
How do other users deal with the problem of consolidating many small bitdust transactions into a usable amount, without paying very high fees?
This almost seems like a flaw in the Bitcoin system, that Mr Nakamoto didn't consider when he designed the original protocol.
Birdy
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
April 21, 2013, 08:01:00 AM
 #14

I haven't tried it yet, but this seems to be the solution to your problems:

https://bitcointalk.org/index.php?topic=144331.0

I think you could bundle up some of the dust everytime you send a bigger transaction. (or just bundle up some dust if possible).
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
April 21, 2013, 08:16:10 AM
 #15

- snip -
This almost seems like a flaw in the Bitcoin system, that Mr Nakamoto didn't consider when he designed the original protocol.

No flaw.  Mr. Nakamoto made it clear from the very beginning that it was expected that mining would be supported by transaction fees.  Since bytes of space in the block is the limited resource that drive the miners to be selective in their transactions to maintain profitability, it should have been clear to anyone that very large transactions (lots of dust) of very low value would be prohibitively expensive to create.

Consumers are welcome to refuse to engage with entities that send dust.  In time, competitors that allow users to build balances over time consolidating value and then trigger transactions sending single larger amounts will find more willing clients.  As a consumer you get to make those choices for yourself.  You also have the opportunity to create a better business model and drive the competition out of business.
Brunt, FCA
Member
**
Offline Offline

Activity: 68
Merit: 10



View Profile
April 21, 2013, 10:19:58 AM
 #16

As a relative newcomer to the Bitcoin scene, I will allow myself to be guided by my betters, but I am still a bit upset that all those hours spent clicking on things on the free BTC websites produced payments that are worth far less in reality than I thought they would be.
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
April 21, 2013, 10:28:30 AM
 #17

As a relative newcomer to the Bitcoin scene, I will allow myself to be guided by my betters, but I am still a bit upset that all those hours spent clicking on things on the free BTC websites produced payments that are worth far less in reality than I thought they would be.

Yes, I'd be pretty upset with the creators of those sites for luring me in with false hope as well if I were you.

They make no effort to educate their visitors to the limitations of the payouts they provide.

I wouldn't give up hope though.  If bitcoin grows in popularity, the exchange rate is likely to climb.  Eventually, the minimum required transaction fee (as expressed in terms of bitcoins) is likely then to be reduced.  You may find in a few months (or years) that the contents of the wallet can be easily spent with minimal fees (or perhaps even no fees at all).

In the future, if a well written coin-control wallet becomes available, it may be possible to consolidate the dust contents of the wallet as well.

RobertRibbeck (OP)
Full Member
***
Offline Offline

Activity: 221
Merit: 100


View Profile
April 23, 2013, 11:30:29 AM
 #18

As a relative newcomer to the Bitcoin scene, I will allow myself to be guided by my betters, but I am still a bit upset that all those hours spent clicking on things on the free BTC websites produced payments that are worth far less in reality than I thought they would be.

Yes, I'd be pretty upset with the creators of those sites for luring me in with false hope as well if I were you.

They make no effort to educate their visitors to the limitations of the payouts they provide.


Let me get this straight

paying in fractional btc is not cool and reason to get upset
but charging 2 or more times the amount your are transferring for a minutes computer time to do the transfer is OK

guess I'll stop mining and just rob people to do transfers

Please "Clear your browser cookies" then use http://bitcoinpyramid.com/r/3360 to Join BitCoin Pyramid
  use my referral & I'll refund a % of your first deposit back to your account
  Deposit .5 BTC or more and I'll give back 50% of what I receive

First Deposit of 1 BTC will get 75% of what I get back
Rodyland
Hero Member
*****
Offline Offline

Activity: 499
Merit: 500


View Profile
April 23, 2013, 11:55:51 AM
 #19

As a relative newcomer to the Bitcoin scene, I will allow myself to be guided by my betters, but I am still a bit upset that all those hours spent clicking on things on the free BTC websites produced payments that are worth far less in reality than I thought they would be.

Yes, I'd be pretty upset with the creators of those sites for luring me in with false hope as well if I were you.

They make no effort to educate their visitors to the limitations of the payouts they provide.


Let me get this straight

paying in fractional btc is not cool and reason to get upset
but charging 2 or more times the amount your are transferring for a minutes computer time to do the transfer is OK

guess I'll stop mining and just rob people to do transfers

It's not a minute's worth of computer time.  Your transaction, all that dust being spent, will be stored by the network FOR EVER.  Any time someone downloads a full blockchain for a brand new full-node, they will have to store and process that giant dust transaction.  That is the reason the fees are what they are.

Beware the weak hands!
1NcL6Mjm4qeiYYi2rpoCtQopPrH4PyKfUC
GPG ID: E3AA41E3
RobertRibbeck (OP)
Full Member
***
Offline Offline

Activity: 221
Merit: 100


View Profile
April 23, 2013, 12:04:23 PM
 #20

As a relative newcomer to the Bitcoin scene, I will allow myself to be guided by my betters, but I am still a bit upset that all those hours spent clicking on things on the free BTC websites produced payments that are worth far less in reality than I thought they would be.

Yes, I'd be pretty upset with the creators of those sites for luring me in with false hope as well if I were you.

They make no effort to educate their visitors to the limitations of the payouts they provide.


Let me get this straight

paying in fractional btc is not cool and reason to get upset
but charging 2 or more times the amount your are transferring for a minutes computer time to do the transfer is OK

guess I'll stop mining and just rob people to do transfers

It's not a minute's worth of computer time.  Your transaction, all that dust being spent, will be stored by the network FOR EVER.  Any time someone downloads a full blockchain for a brand new full-node, they will have to store and process that giant dust transaction.  That is the reason the fees are what they are.

so the network does the work with their computers with no compensation
and the fee goes to who...
I gotta become the "who"  get paid lots of bit coin for letting everyone else do the work

Please "Clear your browser cookies" then use http://bitcoinpyramid.com/r/3360 to Join BitCoin Pyramid
  use my referral & I'll refund a % of your first deposit back to your account
  Deposit .5 BTC or more and I'll give back 50% of what I receive

First Deposit of 1 BTC will get 75% of what I get back
Rodyland
Hero Member
*****
Offline Offline

Activity: 499
Merit: 500


View Profile
April 23, 2013, 12:11:35 PM
 #21

As a relative newcomer to the Bitcoin scene, I will allow myself to be guided by my betters, but I am still a bit upset that all those hours spent clicking on things on the free BTC websites produced payments that are worth far less in reality than I thought they would be.

Yes, I'd be pretty upset with the creators of those sites for luring me in with false hope as well if I were you.

They make no effort to educate their visitors to the limitations of the payouts they provide.


Let me get this straight

paying in fractional btc is not cool and reason to get upset
but charging 2 or more times the amount your are transferring for a minutes computer time to do the transfer is OK

guess I'll stop mining and just rob people to do transfers

It's not a minute's worth of computer time.  Your transaction, all that dust being spent, will be stored by the network FOR EVER.  Any time someone downloads a full blockchain for a brand new full-node, they will have to store and process that giant dust transaction.  That is the reason the fees are what they are.

so the network does the work with their computers with no compensation
and the fee goes to who...
I gotta become the "who"  get paid lots of bit coin for letting everyone else do the work

Are you trying to pick an argument, or are  you truly asking a question here?

The fee goes to the miner who puts your transaction into the block chain.

Beware the weak hands!
1NcL6Mjm4qeiYYi2rpoCtQopPrH4PyKfUC
GPG ID: E3AA41E3
RobertRibbeck (OP)
Full Member
***
Offline Offline

Activity: 221
Merit: 100


View Profile
April 23, 2013, 12:17:53 PM
 #22

As a relative newcomer to the Bitcoin scene, I will allow myself to be guided by my betters, but I am still a bit upset that all those hours spent clicking on things on the free BTC websites produced payments that are worth far less in reality than I thought they would be.

Yes, I'd be pretty upset with the creators of those sites for luring me in with false hope as well if I were you.

They make no effort to educate their visitors to the limitations of the payouts they provide.


Let me get this straight

paying in fractional btc is not cool and reason to get upset
but charging 2 or more times the amount your are transferring for a minutes computer time to do the transfer is OK

guess I'll stop mining and just rob people to do transfers

It's not a minute's worth of computer time.  Your transaction, all that dust being spent, will be stored by the network FOR EVER.  Any time someone downloads a full blockchain for a brand new full-node, they will have to store and process that giant dust transaction.  That is the reason the fees are what they are.

so the network does the work with their computers with no compensation
and the fee goes to who...
I gotta become the "who"  get paid lots of bit coin for letting everyone else do the work

Are you trying to pick an argument, or are  you truly asking a question here?

The fee goes to the miner who puts your transaction into the block chain.

no argument intended
just wondering how I might get paid for doing that
xfer fees are higher than mining profits

Please "Clear your browser cookies" then use http://bitcoinpyramid.com/r/3360 to Join BitCoin Pyramid
  use my referral & I'll refund a % of your first deposit back to your account
  Deposit .5 BTC or more and I'll give back 50% of what I receive

First Deposit of 1 BTC will get 75% of what I get back
Rodyland
Hero Member
*****
Offline Offline

Activity: 499
Merit: 500


View Profile
April 23, 2013, 12:24:04 PM
 #23


Are you trying to pick an argument, or are  you truly asking a question here?

The fee goes to the miner who puts your transaction into the block chain.

no argument intended
just wondering how I might get paid for doing that
xfer fees are higher than mining profits

Cheesy

That's cool, I truly wasn't sure.

Transaction fees are still quite small compared to the block reward - single digit percentages I believe.  Also, some mining pools pay out tx fees, others keep them and only pay out the block reward.

There is another aspect to transfer fees beyond tx size - and that is coin age.  Older coins are cheaper to spend.  It doesn't help you right now, and with such dust the time required would probably be significant, but I believe _eventually_ your dust transactions would get cheaper.

In the meantime, if you plan on spending bitcoins, but some "real" amounts.  And make sure you set your mining pool payout threshold to a decent size amount to avoid collecting more dust.

Beware the weak hands!
1NcL6Mjm4qeiYYi2rpoCtQopPrH4PyKfUC
GPG ID: E3AA41E3
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
April 23, 2013, 02:42:51 PM
 #24

You might not want to waste your time with Mr. RobertRibbeck.  This isn't the first time he's gotten all worked up about the transactions fees and had them explained to him:

https://bitcointalk.org/index.php?topic=150291.0

He's been mining since 2011:

https://bitcointalk.org/index.php?topic=1976.msg181351#msg181351

I find it surprising that someone can be involved in bitcoin and active on this bitcoin discussion website for nearly two years and still not understand the basics of mining and transaction fees.
RobertRibbeck (OP)
Full Member
***
Offline Offline

Activity: 221
Merit: 100


View Profile
April 23, 2013, 02:54:50 PM
 #25

You might not want to waste your time with Mr. RobertRibbeck.  This isn't the first time he's gotten all worked up about the transactions fees and had them explained to him:

https://bitcointalk.org/index.php?topic=150291.0

He's been mining since 2011:

https://bitcointalk.org/index.php?topic=1976.msg181351#msg181351

I find it surprising that someone can be involved in bitcoin and active on this bitcoin discussion website for nearly two years and still not understand the basics of mining and transaction fees.


Ah back to cause trouble again ay danny boy
got troll elsewhere and stop ragging me
especially on MY TREAD

Please "Clear your browser cookies" then use http://bitcoinpyramid.com/r/3360 to Join BitCoin Pyramid
  use my referral & I'll refund a % of your first deposit back to your account
  Deposit .5 BTC or more and I'll give back 50% of what I receive

First Deposit of 1 BTC will get 75% of what I get back
DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
April 23, 2013, 03:38:24 PM
 #26

Ah, back to cause trouble again ay eh Danny boy?
Got troll elsewhere and stop ragging me,
especially on MY THREAD

Fixed that for you.
Gator-hex
Hero Member
*****
Offline Offline

Activity: 490
Merit: 500


View Profile
April 25, 2013, 11:39:34 AM
 #27

Quote
The fee goes to the miner who puts your transaction into the block chain.

The transaction fee goes to the bitcoin pool owner, how they share it to miners is up to them and their honesty!  Wink

The miner only gets the fee if they mine solo (and who does that these days?).

DannyHamilton
Legendary
*
Offline Offline

Activity: 3388
Merit: 4616



View Profile
April 25, 2013, 01:47:00 PM
 #28

Quote
The fee goes to the miner who puts your transaction into the block chain.

The transaction fee goes to the bitcoin pool owner, how they share it to miners is up to them and their honesty!  Wink

The miner only gets the fee if they mine solo (and who does that these days?).

Sure, but in the case of a pool, isn't it the pool owner that "puts your transaction into the blockchain"?  The individual miners in a pool don't have any control over which transactions go into the block, do they?  So that means that the previous response is "technically" correct?
Pages: 1 2 [All]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!