diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-11-06 22:11:39 -0700 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-11-06 22:11:49 -0700 |
commit | 2b93288fd717bbe5ebf046dd45000aee8cb3da46 (patch) | |
tree | 43c531fd7e22f46ac9759db77144d09e0fda6937 /src/cryptonote_config.h | |
parent | Merge pull request #182 (diff) | |
parent | per kb fees not passing correct fee to transfer() (diff) | |
download | monero-2b93288fd717bbe5ebf046dd45000aee8cb3da46.tar.xz |
Merge pull request #184
d2287d3 per kb fees not passing correct fee to transfer() (Thomas Winget)
dc67b12 Should now properly do per-kb fee (Thomas Winget)
557e27f per kb fees (Thomas Winget)
Diffstat (limited to 'src/cryptonote_config.h')
-rw-r--r-- | src/cryptonote_config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h index 1ac8ab328..fd52f2e87 100644 --- a/src/cryptonote_config.h +++ b/src/cryptonote_config.h @@ -57,6 +57,7 @@ // COIN - number of smallest units in one coin #define COIN ((uint64_t)1000000000000) // pow(10, 12) #define DEFAULT_FEE ((uint64_t)100000000000) // 5 * pow(10, 11) +#define FEE_PER_KB ((uint64_t)10000000000) // pow(10, 10) #define ORPHANED_BLOCKS_MAX_COUNT 100 |