From 48cf9df7a6021772f02b2cbd18503986f27cca51 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Thu, 31 Jan 2013 13:06:20 -0800 Subject: [PATCH] Revised PUBLIC_BYTES_MAX to 33 bytes. --- src/cpp/ripple/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/Config.h b/src/cpp/ripple/Config.h index 11a6b8a1b9..741e9a7ef0 100644 --- a/src/cpp/ripple/Config.h +++ b/src/cpp/ripple/Config.h @@ -31,7 +31,7 @@ #define VALIDATORS_FILE_NAME "validators.txt" const int DOMAIN_BYTES_MAX = 256; -const int PUBLIC_BYTES_MAX = 2048; // Maximum bytes for an account public key. +const int PUBLIC_BYTES_MAX = 33; // Maximum bytes for an account public key. const int SYSTEM_PEER_PORT = 6561; const int SYSTEM_WEBSOCKET_PORT = 6562;