begin integration with bitcoin upstream

This commit is contained in:
Wladimir J. van der Laan
2011-05-14 10:31:46 +02:00
parent 4d1bb15e31
commit 1f2e0df865
38 changed files with 3489 additions and 35 deletions

View File

@@ -0,0 +1,21 @@
#ifndef BITCOINADDRESSVALIDATOR_H
#define BITCOINADDRESSVALIDATOR_H
#include <QRegExpValidator>
#include <base58.h>
class BitcoinAddressValidator : public QRegExpValidator
{
Q_OBJECT
public:
explicit BitcoinAddressValidator(QObject *parent = 0);
static const QString valid_chars;
signals:
public slots:
};
#endif // BITCOINADDRESSVALIDATOR_H