mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_MAINCHAINRPC_H
|
|
#define BITCOIN_MAINCHAINRPC_H
|
|
|
|
#include <rpc/client.h>
|
|
#include <rpc/protocol.h>
|
|
#include <uint256.h>
|
|
|
|
#include <string>
|
|
#include <stdexcept>
|
|
|
|
#include <univalue.h>
|
|
|
|
static const bool DEFAULT_NAMED=false;
|
|
static const char DEFAULT_RPCCONNECT[] = "127.0.0.1";
|
|
static const int DEFAULT_HTTP_CLIENT_TIMEOUT=900;
|
|
|
|
//
|
|
// Exception thrown on connection error. This error is used to determine
|
|
// when to wait if -rpcwait is given.
|
|
//
|
|
class CConnectionFailed : public std::runtime_error
|
|
{
|
|
public:
|
|
|
|
explicit inline CConnectionFailed(const std::string& msg) :
|
|
std::runtime_error(msg)
|
|
{}
|
|
|
|
};
|
|
|
|
UniValue CallMainChainRPC(const std::string& strMethod, const UniValue& params);
|
|
|
|
// Verify if the block with given hash has at least the specified minimum number
|
|
// of confirmations.
|
|
// For validating merkle blocks, you can provide the nbTxs parameter to verify if
|
|
// it equals the number of transactions in the block.
|
|
bool IsConfirmedBitcoinBlock(const uint256& hash, const int nMinConfirmationDepth, const int nbTxs);
|
|
|
|
#endif // BITCOIN_MAINCHAINRPC_H
|
|
|