diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-03-19 11:39:59 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-03-19 11:39:59 +0200 |
commit | 8361d60aef6e17908658128284899e3a11d808d4 (patch) | |
tree | 473e738892888ae70ce2dc7e7e7d261a81648cbd /src/cryptonote_config.h | |
parent | Merge pull request #3431 (diff) | |
parent | core: fix use of uninitialised data (diff) | |
download | monero-8361d60aef6e17908658128284899e3a11d808d4.tar.xz |
Merge pull request #3434
b1398fff core: fix use of uninitialised data (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_config.h')
-rw-r--r-- | src/cryptonote_config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h index 0ad8a6005..3e64073dd 100644 --- a/src/cryptonote_config.h +++ b/src/cryptonote_config.h @@ -200,6 +200,7 @@ namespace cryptonote MAINNET = 0, TESTNET, STAGENET, - FAKECHAIN + FAKECHAIN, + UNDEFINED = 255 }; } |