2011-05-13 22:00:27 +02:00
|
|
|
#include "bitcoinaddressvalidator.h"
|
|
|
|
|
2011-05-14 11:18:39 +02:00
|
|
|
#include "base58.h"
|
2011-05-13 22:00:27 +02:00
|
|
|
|
|
|
|
BitcoinAddressValidator::BitcoinAddressValidator(QObject *parent) :
|
2011-05-14 11:18:39 +02:00
|
|
|
QRegExpValidator(QRegExp(QString("^[")+QString(pszBase58)+QString("]+")), parent)
|
2011-05-13 22:00:27 +02:00
|
|
|
{
|
|
|
|
}
|