aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluffypony <ric@spagni.net>2014-08-23 22:21:18 +0200
committerfluffypony <ric@spagni.net>2014-08-23 22:21:18 +0200
commitdb69298b954764413e3e9f33c66eae548f576c48 (patch)
tree6ad35620c752acd5e48ee18b348c80e9d3a3756a
parentMerge pull request #86 from jakoblind/seed (diff)
downloadmonero-db69298b954764413e3e9f33c66eae548f576c48.tar.xz
quick fee ramp to prevent spam attack
-rw-r--r--src/cryptonote_config.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h
index af7636564..2fa9f244a 100644
--- a/src/cryptonote_config.h
+++ b/src/cryptonote_config.h
@@ -54,7 +54,7 @@
#define CRYPTONOTE_DISPLAY_DECIMAL_POINT 12
// COIN - number of smallest units in one coin
#define COIN ((uint64_t)1000000000000) // pow(10, 12)
-#define DEFAULT_FEE ((uint64_t)5000000000) // 5 * pow(10, 9)
+#define DEFAULT_FEE ((uint64_t)100000000000) // 5 * pow(10, 11)
#define ORPHANED_BLOCKS_MAX_COUNT 100
@@ -96,10 +96,11 @@
#define P2P_DEFAULT_PING_CONNECTION_TIMEOUT 2000 //2 seconds
#define P2P_DEFAULT_INVOKE_TIMEOUT 60*2*1000 //2 minutes
#define P2P_DEFAULT_HANDSHAKE_INVOKE_TIMEOUT 5000 //5 seconds
-#define P2P_STAT_TRUSTED_PUB_KEY "8f80f9a5a434a9f1510d13336228debfee9c918ce505efe225d8c94d045fa115"
+#define P2P_STAT_TRUSTED_PUB_KEY "0000000000000000000000000000000000000000000000000000000000000000"
#define P2P_DEFAULT_WHITELIST_CONNECTIONS_PERCENT 70
-#define ALLOW_DEBUG_COMMANDS
+// enable this if you want to make COMMAND_REQUEST_STAT_INFO, COMMAND_REQUEST_NETWORK_STATE, and COMMAND_REQUEST_PEER_ID available
+// #define ALLOW_DEBUG_COMMANDS
#define CRYPTONOTE_NAME "bitmonero"
#define CRYPTONOTE_POOLDATA_FILENAME "poolstate.bin"