BitShares-Core  7.0.2
BitShares blockchain node software and command-line wallet software
config.hpp
Go to the documentation of this file.
1 #ifndef FC_PACK_MAX_DEPTH
2  // The maximum level of object nesting is around 20% of this value
3  #define FC_PACK_MAX_DEPTH 1000
4 #endif
5 
6 #ifndef FC_MAX_LOG_OBJECT_DEPTH
7  // how many levels of nested objects are displayed in log messages
8  #define FC_MAX_LOG_OBJECT_DEPTH 200
9 #endif
10 
11 #ifndef FC_MAX_PREALLOC_SIZE
12 // how many elements will be reserve()d when deserializing vectors
13 #define FC_MAX_PREALLOC_SIZE (256UL)
14 #endif