LTC transaction fees and p2pool

4

I'm experimenting with LTC p2pool mining. However, it generates lots of micropayments (0.02 LTC). Such small payments generate big transaction fees (in latest litecoin-qt from github). Example: 0.6 LTC transaction fee for sending 0.3 LTC.

How can I avoid such big transaction fees?

BitcoinNewbie

Posted 2013-04-08T23:16:05.127

Reputation: 41

Answers

1

Transaction fees are calculated according to priority and transaction size.

Priority is a function of age and value of a single input in the wallet. The larger the value and the older the input age the higher the priority will be. Input value and input bytesize are static values. Input age is a variable that increases with time. So, in short, you can decrease your fees by allowing the coins to "age" (aka wait).

priority = (input_value * input_age)/input_bytesize

priority >57600000 is free (not accounting for transaction size)

Transaction size is going to incur fees anytime 5 or more inputs are included in an output. The only way to avoid incurring transaction size fees is to create outputs containing 4 or less inputs. I am not aware of any coin control extensions for the litecoin client so achieving this will likely prove very difficult for very small inputs.

The litecoin client is expected to receive a significant update sometime in May 2013 that may address some of the transaction fee concerns in the current client.

tacticsinquestion

Posted 2013-04-08T23:16:05.127

Reputation: 11

1Hi! What are the units in that equation? Value is... whole coins? And age is in... seconds? Cheers!martinwguy 2013-08-21T16:41:39.557

Age is counted in blocksSamuel Peter 2014-01-22T16:50:11.727

0

I have used this method to reduce my fess to 1.5% . It basically joins a bunch of small p2pool payments into one large payment with 0 transaction fees. But the catch is that there is a 1.5% developer donation, still much cheaper than any other alternative. https://forum.litecoin.net/index.php/topic,3870.0.html

LiteCoin P2Pool Master

Posted 2013-04-08T23:16:05.127

Reputation: 1

It looks like there's a bug in your code: http://ltc.block-explorer.com/tx/7ab6fc85cd656df7f43167ae3c79585ceaf970faf9c7084b19bccbe2a375c672 In fact, it kinda looks like it lost a decimal place.

Nick ODell 2013-05-26T18:44:43.280