Move BIP70_MAX_PAYMENTREQUEST_SIZE to header
This commit is contained in:
parent
914fad155d
commit
c801c82e25
2 changed files with 1 additions and 3 deletions
|
@ -55,8 +55,6 @@ const char* BIP70_MESSAGE_PAYMENTREQUEST = "PaymentRequest";
|
||||||
const char* BIP71_MIMETYPE_PAYMENT = "application/bitcoin-payment";
|
const char* BIP71_MIMETYPE_PAYMENT = "application/bitcoin-payment";
|
||||||
const char* BIP71_MIMETYPE_PAYMENTACK = "application/bitcoin-paymentack";
|
const char* BIP71_MIMETYPE_PAYMENTACK = "application/bitcoin-paymentack";
|
||||||
const char* BIP71_MIMETYPE_PAYMENTREQUEST = "application/bitcoin-paymentrequest";
|
const char* BIP71_MIMETYPE_PAYMENTREQUEST = "application/bitcoin-paymentrequest";
|
||||||
// BIP70 max payment request size in bytes (DoS protection)
|
|
||||||
const qint64 BIP70_MAX_PAYMENTREQUEST_SIZE = 50000;
|
|
||||||
|
|
||||||
struct X509StoreDeleter {
|
struct X509StoreDeleter {
|
||||||
void operator()(X509_STORE* b) {
|
void operator()(X509_STORE* b) {
|
||||||
|
|
|
@ -53,7 +53,7 @@ class QUrl;
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
// BIP70 max payment request size in bytes (DoS protection)
|
// BIP70 max payment request size in bytes (DoS protection)
|
||||||
extern const qint64 BIP70_MAX_PAYMENTREQUEST_SIZE;
|
static const qint64 BIP70_MAX_PAYMENTREQUEST_SIZE = 50000;
|
||||||
|
|
||||||
class PaymentServer : public QObject
|
class PaymentServer : public QObject
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue