mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-10 15:18:09 +00:00
9 lines
217 B
C++
9 lines
217 B
C++
#include "bitcoinaddressvalidator.h"
|
|
|
|
#include "base58.h"
|
|
|
|
BitcoinAddressValidator::BitcoinAddressValidator(QObject *parent) :
|
|
QRegExpValidator(QRegExp(QString("^[")+QString(pszBase58)+QString("]+")), parent)
|
|
{
|
|
}
|