hyperledger/iroha
Iroha - A simple, decentralized ledger http://iroha.tech
startup_params.hpp
Go to the documentation of this file.
1 
6 #ifndef IROHA_STARTUP_PARAMS_HPP
7 #define IROHA_STARTUP_PARAMS_HPP
8 
9 namespace iroha {
13  enum class StartupWsvDataPolicy {
14  kReuse,
15  kDrop,
16  };
17 
18  enum class StorageType {
19  kPostgres,
20  kRocksDb,
21  };
22 
27  kSyncUpAndGo,
29  };
31 } // namespace iroha
32 
33 #endif
StartupWsvSynchronizationPolicy
Definition: startup_params.hpp:26
try to reuse existing data in the WSV
Definition: block_query.hpp:15
StartupWsvDataPolicy
Definition: startup_params.hpp:13
drop any existing state data
StorageType
Definition: startup_params.hpp:18