26 lines
430 B
C++
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
|