forked from Public/monero-gui
Stagenet
This commit is contained in:
17
src/NetworkType.h
Normal file
17
src/NetworkType.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include <QObject>
|
||||
#include <wallet/api/wallet2_api.h>
|
||||
|
||||
class NetworkType : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
enum Type : uint8_t {
|
||||
MAINNET = Monero::MAINNET,
|
||||
TESTNET = Monero::TESTNET,
|
||||
STAGENET = Monero::STAGENET
|
||||
};
|
||||
Q_ENUM(Type)
|
||||
};
|
||||
Reference in New Issue
Block a user