mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-10 15:18:09 +00:00
12 lines
230 B
C
12 lines
230 B
C
#ifndef GUICONSTANTS_H
|
|
#define GUICONSTANTS_H
|
|
|
|
/* milliseconds between model updates */
|
|
static const int MODEL_UPDATE_DELAY = 250;
|
|
|
|
/* size of cache */
|
|
static const unsigned int WALLET_CACHE_SIZE = 100;
|
|
|
|
|
|
#endif // GUICONSTANTS_H
|