Add Config options for FEE_DEFAULT and FEE_CREATE.

This commit is contained in:
Arthur Britto
2012-05-17 20:29:37 -07:00
parent 4b1dd5dee0
commit e96ae17554
2 changed files with 19 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
#ifndef __CONFIG__
#define __CONFIG__
#include "types.h"
#include <string>
#define SYSTEM_NAME "newcoin"
@@ -63,6 +65,9 @@ public:
int PEER_START_MAX;
int PEER_CONNECT_LOW_WATER;
uint64 FEE_CREATE; // Fee to create an account
uint64 FEE_DEFAULT; // Default fee.
// configuration parameters
std::string DATA_DIR;