aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/fee.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Copyright: Update to 2022mj-xmr2022-03-041-1/+1
|
* Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| | | | Update copyright year to 2020
* Update 2019 copyrightbinaryFate2019-03-051-1/+1
|
* v8: per byte fee, pad bulletproofs, fixed 11 ring sizemoneromooo-monero2018-09-111-27/+27
|
* Update 2018 copyrightxmr-eric2018-01-261-1/+1
|
* Add intervening v5 fork for increased min block sizemoneromooo-monero2017-03-151-25/+25
| | | | | | | | | | Minimum mixin 4 and enforced ringct is moved from v5 to v6. v5 is now used for an increased minimum block size (from 60000 to 300000) to cater for larger typical/minimum transaction size. The fee algorithm is also changed to decrease the base per kB fee, and add a cheap tier for those transactions which we do not care if they get delayed (or even included in a block).
* unit_tests: fix fee tests after quantization changemoneromooo-monero2017-03-041-22/+35
|
* update copyright year, fix occasional lack of newline at line endRiccardo Spagni2017-02-211-1/+1
|
* tests: fix another fee test on 32 bitmoneromooo-monero2016-11-131-1/+1
|
* tests: fix fee unit tests on 32 bitmoneromooo-monero2016-11-101-3/+5
|
* core: dynamic fee algorithm from ArticMinemoneromooo-monero2016-10-311-0/+121
The fee will vary based on the base reward and the current block size limit: fee = (R/R0) * (M0/M) * F0 R: base reward R0: reference base reward (10 monero) M: block size limit M0: minimum block size limit (60000) F0: 0.002 monero Starts applying at v4