mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-21 02:55:50 +00:00
Validator lists from configured remote sites are fetched at a regular interval. Fetched lists are expected to be in JSON format and contain the following fields: * "manifest": Base64-encoded serialization of a manifest containing the validator publisher's master and signing public keys. * "blob": Base64-encoded JSON string containing a "sequence", "expiration" and "validators" field. "expiration" contains the Ripple timestamp (seconds since January 1st, 2000 (00:00 UTC)) for when the list expires. "validators" contains an array of objects with a "validation_public_key" field. * "signature": Hex-encoded signature of the blob using the publisher's signing key. * "version": 1 * "refreshInterval" (optional)
37 lines
1.7 KiB
C++
37 lines
1.7 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include <BeastConfig.h>
|
|
|
|
#include <ripple/app/misc/CanonicalTXSet.cpp>
|
|
#include <ripple/app/misc/FeeVoteImpl.cpp>
|
|
#include <ripple/app/misc/HashRouter.cpp>
|
|
#include <ripple/app/misc/NetworkOPs.cpp>
|
|
#include <ripple/app/misc/SHAMapStoreImp.cpp>
|
|
#include <ripple/app/misc/Validations.cpp>
|
|
|
|
#include <ripple/app/misc/impl/AccountTxPaging.cpp>
|
|
#include <ripple/app/misc/impl/AmendmentTable.cpp>
|
|
#include <ripple/app/misc/impl/LoadFeeTrack.cpp>
|
|
#include <ripple/app/misc/impl/Manifest.cpp>
|
|
#include <ripple/app/misc/impl/Transaction.cpp>
|
|
#include <ripple/app/misc/impl/TxQ.cpp>
|
|
#include <ripple/app/misc/impl/ValidatorList.cpp>
|
|
#include <ripple/app/misc/impl/ValidatorSite.cpp>
|