• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

Search results

  1. S

    DASH | 100kB Fee Limit

    Hello Dash Members! Dash has a hard-coded 100kB fee limit on transactions being sent. Can Dash developers confirm if the attachment produced below, is the correct variable in the code?
  2. S

    DASH | Transaction too large for fee policy

    Thank you so much! That was absolutely correct :)
  3. S

    DASH | Transaction too large for fee policy

    Hello Dash Experts, Are any Dashers experienced enough in coding to point me in the direction in the actual source code that limits transaction size for fee policy on Github? https://github.com/dashpay/dash/tree/master/src When playing around with the source code to find a mathematically...
  4. S

    DASH | Where in the code is the fee calculated?

    Thank you, class CCoinsViewCache; /** Default for -blockmaxsize, which controls the maximum size of block the mining code will create **/ static const unsigned int DEFAULT_BLOCK_MAX_SIZE = 2000000; /** Default for -blockprioritysize, maximum space for zero/low-fee transactions **/ static const...
  5. S

    DASH | Where in the code is the fee calculated?

    Thank you for your reply, after looking through the lines of code, it seems to repeat the fact that the fees are calculated from fee = view.GetValueIn(tx); - tx.GetValueOut(); nFees += view.GetValueIn(tx)-tx.GetValueOut(); // Tally transaction fees CAmount nTxFee = nValueIn -...
  6. S

    DASH | Where in the code is the fee calculated?

    Hello Friends, I am doing some mathematics to determine the future predicted ROI% of DASH Masternodes once all 18,900,000 DASH are in circulation and Masternodes must survive strictly off transaction fees associated with payments, can any expert members post the exact lines of code in Main.cpp...
Back
Top