Files
SilentDragonXLite/src/utils.h
2018-10-21 22:28:51 -07:00

26 lines
430 B
C++

#ifndef UTILS_H
#define UTILS_H
#include "precompiled.h"
struct ToFields;
struct Tx;
class Utils
{
public:
static const QString txidStatusMessage;
static const QString getTokenName();
static const QString getDevAddr(Tx tx);
static double getMinerFee();
static double getDevFee();
static double getTotalFee();
static const int updateSpeed = 20 * 1000; // 20 sec
private:
Utils() = delete;
};
#endif // UTILS_H