aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-14 07:49:17 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-14 14:02:36 +0200
commit966ae00fe4b7c8420b6a1cfe3aa30fca4410a0e8 (patch)
treeb0bf547ddb05dc2ed5bcb04568a4e4b6293265e6 /src/main.h
parent0071a540d40f8e7cf75eb555f007ab61473a3a81 (diff)
downloadbitcoin-966ae00fe4b7c8420b6a1cfe3aa30fca4410a0e8.tar.xz
make CheckDiskSpace() use a global static const uint64 for checking required disk space and remove 2 ugly spaces from a message string
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.h b/src/main.h
index 5ac5547a3e..1fa2308b7f 100644
--- a/src/main.h
+++ b/src/main.h
@@ -75,8 +75,8 @@ extern unsigned char pchMessageStart[4];
// Settings
extern int64 nTransactionFee;
-
-
+// Minimum disk space required - used in CheckDiskSpace()
+static const uint64 nMinDiskSpace = 52428800;
class CReserveKey;