Bitcoin Forum
May 05, 2024, 05:59:18 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Configure Bitcoind to NOT relay 0 fee transactions  (Read 1535 times)
RandomQ (OP)
Hero Member
*****
Offline Offline

Activity: 826
Merit: 500



View Profile
July 15, 2012, 02:56:49 AM
 #1

I've been searching for more information on how to do this? almost 30 mins now.

I want my bitcoind to not relay any transaction that has a 0 fee included. Yes, I'm a greedy miner lol

Do i have to use a forked client? patch?

Someone point me in the right direction lol
1714931958
Hero Member
*
Offline Offline

Posts: 1714931958

View Profile Personal Message (Offline)

Ignore
1714931958
Reply with quote  #2

1714931958
Report to moderator
1714931958
Hero Member
*
Offline Offline

Posts: 1714931958

View Profile Personal Message (Offline)

Ignore
1714931958
Reply with quote  #2

1714931958
Report to moderator
In order to achieve higher forum ranks, you need both activity points and merit points.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Stephen Gornick
Legendary
*
Offline Offline

Activity: 2506
Merit: 1010


View Profile
July 15, 2012, 03:08:59 AM
 #2

I want my bitcoind to not relay any transaction that has a 0 fee included. Yes, I'm a greedy miner lol

Heh thousands of nodes will relay it, but yours won't.  So if I'm connected to eight nodes, and yours is one of them, it might then take 3.6 seconds for my transaction to propagate globally rather than 3.5 seconds.

Unichange.me

            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █
            █


RandomQ (OP)
Hero Member
*****
Offline Offline

Activity: 826
Merit: 500



View Profile
July 15, 2012, 03:14:17 AM
 #3

Yea I know let the free loaders leech someone else blocks lol.
I'm sure 99% of the clients will relay them, I want to be the 1% lol
-----
I want my sub pool/pool to not relay them
randomproof
Member
**
Offline Offline

Activity: 61
Merit: 10


View Profile
July 23, 2012, 03:23:50 PM
 #4

Here is what I found after a quick check:

Look for this code in main.cpp
Code:
        // Note: if you modify this code to accept non-standard transactions, then
        // you should add code here to check that the transaction does a
        // reasonable number of ECDSA signature verifications.

        int64 nFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
        unsigned int nSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);

        // Don't accept it if it can't get into a block
        if (nFees < tx.GetMinFee(1000, true, GMF_RELAY))
            return error("CTxMemPool::accept() : not enough fees");

and change to this:

Code:
        // Note: if you modify this code to accept non-standard transactions, then
        // you should add code here to check that the transaction does a
        // reasonable number of ECDSA signature verifications.

        int64 nFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();

        if (nFees == 0)
                return false;

        unsigned int nSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);

        // Don't accept it if it can't get into a block
        if (nFees < tx.GetMinFee(1000, true, GMF_RELAY))
            return error("CTxMemPool::accept() : not enough fees");

Donations to me:   19599Y3PTRF1mNdzVjQzePr67ttMiBG5LS
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!