diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-10-27 23:43:44 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-10-31 08:37:08 +0000 |
commit | 82dbba10d467e28e56929e2e7f3b1f04d4635da4 (patch) | |
tree | a6085abcc430988bb1f0d021dfe1415b1d6866f2 /tests/unit_tests/CMakeLists.txt | |
parent | Merge pull request #1270 (diff) | |
download | monero-82dbba10d467e28e56929e2e7f3b1f04d4635da4.tar.xz |
core: dynamic fee algorithm from ArticMine
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
Diffstat (limited to 'tests/unit_tests/CMakeLists.txt')
-rw-r--r-- | tests/unit_tests/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit_tests/CMakeLists.txt b/tests/unit_tests/CMakeLists.txt index b7fdc333f..f3658b9ff 100644 --- a/tests/unit_tests/CMakeLists.txt +++ b/tests/unit_tests/CMakeLists.txt @@ -39,6 +39,7 @@ set(unit_tests_sources dns_resolver.cpp epee_boosted_tcp_server.cpp epee_levin_protocol_handler_async.cpp + fee.cpp get_xtype_from_string.cpp main.cpp mnemonics.cpp |