Fabcoin Core
0.16.2
P2P Digital Currency
|
#include <stdlib.h>
#include <stdint.h>
Go to the source code of this file.
Enumerations | |
enum | { LOCKTIME_VERIFY_SEQUENCE = (1 << 0), LOCKTIME_MEDIAN_TIME_PAST = (1 << 1) } |
Flags for nSequence and nLockTime locks. More... | |
Functions | |
void | updateBlockSizeParams (unsigned int newBlockSize) |
Variables | |
unsigned int | dgpMaxBlockSerSize |
The maximum allowed size for a serialized block, in bytes (only for buffer size limits) More... | |
unsigned int | dgpMaxBlockWeight |
The maximum allowed weight for a block, see BIP 141 (network rule) More... | |
unsigned int | dgpMaxBlockBaseSize |
The maximum allowed size for a block excluding witness data, in bytes (network rule) More... | |
unsigned int | dgpMaxBlockSize |
int64_t | dgpMaxBlockSigOps |
The maximum allowed number of signature check operations in a block (network rule) More... | |
unsigned int | dgpMaxProtoMsgLength |
unsigned int | dgpMaxTxSigOps |
anonymous enum |
Flags for nSequence and nLockTime locks.
Enumerator | |
---|---|
LOCKTIME_VERIFY_SEQUENCE | |
LOCKTIME_MEDIAN_TIME_PAST |
Definition at line 43 of file consensus.h.
void updateBlockSizeParams | ( | unsigned int | newBlockSize | ) |
unsigned int dgpMaxBlockBaseSize |
The maximum allowed size for a block excluding witness data, in bytes (network rule)
Definition at line 10 of file consensus.cpp.
unsigned int dgpMaxBlockSerSize |
The maximum allowed size for a serialized block, in bytes (only for buffer size limits)
Definition at line 6 of file consensus.cpp.
int64_t dgpMaxBlockSigOps |
The maximum allowed number of signature check operations in a block (network rule)
Definition at line 15 of file consensus.cpp.
unsigned int dgpMaxBlockSize |
Definition at line 12 of file consensus.cpp.
unsigned int dgpMaxBlockWeight |
The maximum allowed weight for a block, see BIP 141 (network rule)
Definition at line 8 of file consensus.cpp.
unsigned int dgpMaxProtoMsgLength |
Definition at line 17 of file consensus.cpp.
unsigned int dgpMaxTxSigOps |
Definition at line 19 of file consensus.cpp.