mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-10 07:08:07 +00:00
9 lines
287 B
C++
9 lines
287 B
C++
|
#include "bitcoinaddressvalidator.h"
|
||
|
|
||
|
const QString BitcoinAddressValidator::valid_chars = "123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ";
|
||
|
|
||
|
BitcoinAddressValidator::BitcoinAddressValidator(QObject *parent) :
|
||
|
QRegExpValidator(QRegExp("^["+valid_chars+"]+"), parent)
|
||
|
{
|
||
|
}
|