Bitcoin Forum
May 09, 2024, 01:27:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Transaction fees (for 0.01 BTC)  (Read 2485 times)
jamesb (OP)
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
June 23, 2011, 11:31:39 AM
Last edit: June 23, 2011, 12:08:49 PM by jamesb
 #1

Hello,

I've sent 0.01 BTC to an address to check the system is working (auto generation of address) without any fee and it is. But now I cannot send my 0.01 BTC back because it requests a small fee of: 0.005 BTC. I've tried with the GUI and RPC and it is the same behavior : "Error: This transaction requires a transaction fee of at least 0.0005 because of its amount, complexity, or use of recently received funds".
Ok now I would like to understand why is there such a limitation (I mean why didn't have I to pay a fee for the 1st transaction but only for the 2nd?)? Is there a way to send them anyway and wait even if it has ridiculous low priority? It's been 3 days that I test it so the "recently received funds" should have expired?

An other short question: Can someone sends bitcoins to an offline generated address and the address owner check he received them when he is online again? If yes it should means that when my client generates a new address it don't needs to broadcast it or inform the Network.
Be very wary of relying on JavaScript for security on crypto sites. The site can change the JavaScript at any time unless you take unusual precautions, and browsers are not generally known for their airtight security.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715218034
Hero Member
*
Offline Offline

Posts: 1715218034

View Profile Personal Message (Offline)

Ignore
1715218034
Reply with quote  #2

1715218034
Report to moderator
1715218034
Hero Member
*
Offline Offline

Posts: 1715218034

View Profile Personal Message (Offline)

Ignore
1715218034
Reply with quote  #2

1715218034
Report to moderator
1715218034
Hero Member
*
Offline Offline

Posts: 1715218034

View Profile Personal Message (Offline)

Ignore
1715218034
Reply with quote  #2

1715218034
Report to moderator
InstaGx
Member
**
Offline Offline

Activity: 70
Merit: 10



View Profile
June 23, 2011, 12:01:16 PM
 #2

Hello,

I've send 0.01 BTC to an address to check the system is working (auto generation of address) without any fee and it is. But now I cannot send my 0.01 BTC back because it request a small fee of: 0.005 BTC. I've tried with the GUI and RPC and it is the same behavior : "Error: This transaction requires a transaction fee of at least 0.0005 because of its amount, complexity, or use of recently received funds". Ok now I would like to understand why is there such a limitation (I mean why didn't have I to pay a fee for the 1st transaction but only for the 2nd?)? Is there a way to send them anyway and wait even if it has ridiculous low priority? It's been 3 days that I test it so the "recently received funds" should have expired?

I guess it should be possible to send them anyway if you modify the client. Or just wait a few more days. It's just 0.01 BTC and they won't go anywhere.

An other short question: Can someone sends bitcoins to an offline generated address and the address owner check he received them when he is online again? If yes it should means that when my client generates a new address it don't needs to broadcast it or inform the Network.

Yes, it's possible to receive bitcoins on an address that has never been connected to the network. It's also possible to send btc to non-existing addresses that are in the correct format (we had that question in another thread yesterday).

Buy High - Sell Low
Pieter Wuille
Legendary
*
Offline Offline

Activity: 1072
Merit: 1174


View Profile WWW
June 23, 2011, 12:40:28 PM
 #3

Hello,

I've sent 0.01 BTC to an address to check the system is working (auto generation of address) without any fee and it is. But now I cannot send my 0.01 BTC back because it requests a small fee of: 0.005 BTC. I've tried with the GUI and RPC and it is the same behavior : "Error: This transaction requires a transaction fee of at least 0.0005 because of its amount, complexity, or use of recently received funds".
Ok now I would like to understand why is there such a limitation (I mean why didn't have I to pay a fee for the 1st transaction but only for the 2nd?)? Is there a way to send them anyway and wait even if it has ridiculous low priority? It's been 3 days that I test it so the "recently received funds" should have expired?

The reason is a limitation in most currently active nodes on the network, which block (do not even forward) transactions that look "spammy" (too large, using too recent funds, or too small outputs) if they do not carry a minimum fee. We've been decreasing the minimum fee the past few versions, hoping to move to a more flexible scheme somewhere in the future. However, for some transactions now, if they do not carry a fee, there is a chance they will not be relayed at all by the network, effectively placing your coins in limbo. As a protection for the user, the client will not send without a fee in such cases.

I do Bitcoin stuff.
jamesb (OP)
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
June 23, 2011, 05:42:59 PM
 #4

Thank to both of you. Pieter Wuille's post is very useful after InstaGx's answer.

In Pieter Wuille's answer I've read that there is no verification of the address. It will be a great idea to publish somewhere a list of generated address (each of one signed for proof of existence) so we can have safe transaction. Thank you anyway.
Valhalla1
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
July 15, 2011, 02:58:44 PM
 #5

how long do I need to wait for bitcoins to qualify as not 'recently received' ?
SgtSpike
Legendary
*
Offline Offline

Activity: 1400
Merit: 1005



View Profile
July 15, 2011, 10:47:19 PM
 #6

how long do I need to wait for bitcoins to qualify as not 'recently received' ?
I'm interested in this answer as well... though I suspect it's not a set limit, just a linear or logarithmic score based on age.
Valhalla1
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile
July 16, 2011, 12:56:03 AM
 #7

how long do I need to wait for bitcoins to qualify as not 'recently received' ?
I'm interested in this answer as well... though I suspect it's not a set limit, just a linear or logarithmic score based on age.


well I waited about 12 hours and I was able to send w/ no fee so there is one data point
2112
Legendary
*
Offline Offline

Activity: 2128
Merit: 1068



View Profile
July 16, 2011, 01:07:04 AM
 #8

It is a completely linear score:
Code:
static bool AllowFree(double dPriority)
    {
        // Large (in bytes) low-priority (new, small-coin) transactions
        // need a fee.
        return dPriority > COIN * 144 / 250;
    }
where dPriority is measured in value-in-satoshis times age-in-blocks divided by transaction-size-in-bytes.

This is all in main.{h,cpp} for the curious.

Please comment, critique, criticize or ridicule BIP 2112: https://bitcointalk.org/index.php?topic=54382.0
Long-term mining prognosis: https://bitcointalk.org/index.php?topic=91101.0
SgtSpike
Legendary
*
Offline Offline

Activity: 1400
Merit: 1005



View Profile
July 16, 2011, 01:09:06 AM
 #9

It is a completely linear score:
Code:
static bool AllowFree(double dPriority)
    {
        // Large (in bytes) low-priority (new, small-coin) transactions
        // need a fee.
        return dPriority > COIN * 144 / 250;
    }
where dPriority is measured in value-in-satoshis times age-in-blocks divided by transaction-size-in-bytes.

This is all in main.{h,cpp} for the curious.
Thank you, very helpful!

Guess that 1 satoshi I sent won't be fee-free for quite a while...  Tongue
2112
Legendary
*
Offline Offline

Activity: 2128
Merit: 1068



View Profile
July 16, 2011, 02:10:37 AM
 #10

Well, it really depends on the miners. Check out the https://en.bitcoin.it/wiki/Free_transaction_relay_policy .

Some people run tests with modified clients. It may be worthwhile for you to connect to the node(s) described in the above article.

Please comment, critique, criticize or ridicule BIP 2112: https://bitcointalk.org/index.php?topic=54382.0
Long-term mining prognosis: https://bitcointalk.org/index.php?topic=91101.0
Pages: [1]
  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!