mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-23 21:34:45 +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)
|
|
{
|
|
}
|