mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-13 00:48:59 +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)
|
|
{
|
|
}
|