From f841aa2892ffd97d564deee103555149d9fbcd9a Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Wed, 20 Aug 2014 16:33:55 +0200 Subject: Move `COIN` and `CENT` to core.h Eventually these should end up in `money.h` after monetary amounts are typedef'ed, but at least they don't belong in `util.h`. --- src/util.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/util.h') diff --git a/src/util.h b/src/util.h index cfbf30c6a4..cbd311574a 100644 --- a/src/util.h +++ b/src/util.h @@ -34,9 +34,6 @@ class uint256; -static const int64_t COIN = 100000000; -static const int64_t CENT = 1000000; - #define BEGIN(a) ((char*)&(a)) #define END(a) ((char*)&((&(a))[1])) #define UBEGIN(a) ((unsigned char*)&(a)) -- cgit v1.2.3