Hush lite wallet https://faq.hush.is/sdl
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
331 B

#ifndef SETTINGS_H
#define SETTINGS_H
class Settings
{
public:
Settings();
QString getUsernamePassword();
QString getHost();
QString getPort();
double fees() { return 0.0001; }
void refresh();
private:
QString host;
QString port;
QString username;
QString password;
};
#endif // SETTINGS_H