Do testnet networks require the same main network fee?

3

As in the title, I'm wondering if testnet networks always require the same fee.

I know the coins aren't worth any thing, so it doesn't matter if I have to pay the fee or not, but I'm just curious.

morsecoder

Posted 2014-10-25T19:10:17.563

Reputation: 12 624

Answers

2

I would say so. I can't find any code that make fees lower or optional for testnet users.

However, it's substantially easier to send a free transaction.

inline bool AllowFree(double dPriority)
{
    // Large (in bytes) low-priority (new, small-coin) transactions
    // need a fee.
    return dPriority > COIN * 144 / 250;
}

dPriority is higher for larger amounts. Testnet coins are worth much less, so you're more likely to send lots of them around. For example, if you sent 50 testnet coins half an hour after you got them, that would be eligible for a free transaction.

Nick ODell

Posted 2014-10-25T19:10:17.563

Reputation: 26 536

-3

Testnet allows to send transactions without fees. Mainnet does not mine such transactions.

amaclin

Posted 2014-10-25T19:10:17.563

Reputation: 5 763

2Mainnet does not mine such transactions. Counterexample.Nick ODell 2014-10-25T20:13:58.353