- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 41 for Takemoto (0.54 sec)
-
src/attributes.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_ATTRIBUTES_H #define BITCOIN_ATTRIBUTES_H #if defined(__clang__) # if __has_attribute(lifetimebound) # define LIFETIMEBOUND [[clang::lifetimebound]] # else # define LIFETIMEBOUND # endif
C - Registered: 2021-01-19 01:31 - Last Modified: 2020-12-31 08:45 - 521 bytes - Viewed (0) -
src/policy/feerate.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <policy/feerate.h> #include <tinyformat.h> CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nBytes_) { assert(nBytes_ <= uint64_t(std::numeric_limits<int64_t>::max()));
C++ - Registered: 2021-01-05 01:31 - Last Modified: 2020-12-31 08:45 - 1.3K bytes - Viewed (0) -
src/node/coinstats.h
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NODE_COINSTATS_H #define BITCOIN_NODE_COINSTATS_H #include <amount.h> #include <uint256.h> #include <cstdint> #include <functional> class CCoinsView; enum class CoinStatsHashType {
C - Registered: 2021-01-05 01:31 - Last Modified: 2020-12-31 08:45 - 1K bytes - Viewed (0) -
src/netmessagemaker.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NETMESSAGEMAKER_H #define BITCOIN_NETMESSAGEMAKER_H #include <net.h> #include <serialize.h> class CNetMsgMaker { public: explicit CNetMsgMaker(int nVersionIn) : nVersion(nVersionIn){}
C - Registered: 2021-01-05 01:31 - Last Modified: 2020-12-31 08:45 - 1K bytes - Viewed (0) -
src/node/utxo_snapshot.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NODE_UTXO_SNAPSHOT_H #define BITCOIN_NODE_UTXO_SNAPSHOT_H #include <uint256.h> #include <serialize.h> //! Metadata describing a serialized version of a UTXO set from which an
C - Registered: 2021-01-05 01:31 - Last Modified: 2020-12-31 08:45 - 1.4K bytes - Viewed (0) -
src/outputtype.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_OUTPUTTYPE_H #define BITCOIN_OUTPUTTYPE_H #include <attributes.h> #include <script/signingprovider.h> #include <script/standard.h> #include <array> #include <string> #include <vector>
C - Registered: 2021-01-05 01:31 - Last Modified: 2020-12-31 08:45 - 1.4K bytes - Viewed (0) -
src/base58.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. /** * Why base-58 instead of standard base-64 encoding? * - Don't want 0OIl characters that look the same in some fonts and * could be used to create visually identical looking data.
C - Registered: 2021-01-19 01:31 - Last Modified: 2020-12-31 08:45 - 1.5K bytes - Viewed (0) -
src/compressor.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_COMPRESSOR_H #define BITCOIN_COMPRESSOR_H #include <primitives/transaction.h> #include <script/script.h> #include <serialize.h> #include <span.h>
C - Registered: 2021-01-19 01:31 - Last Modified: 2020-04-16 17:33 - 3.4K bytes - Viewed (0) -
src/addrdb.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_ADDRDB_H #define BITCOIN_ADDRDB_H #include <fs.h> #include <net_types.h> // For banmap_t #include <serialize.h> #include <string> #include <vector> class CAddress; class CAddrMan;
C - Registered: 2021-01-19 01:31 - Last Modified: 2020-12-31 08:45 - 2.1K bytes - Viewed (0) -
src/init.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_INIT_H #define BITCOIN_INIT_H #include <memory> #include <string> class ArgsManager; struct NodeContext; namespace interfaces { struct BlockAndHeaderTipInfo; } namespace boost {
C - Registered: 2021-01-19 01:31 - Last Modified: 2020-12-06 00:22 - 2.7K bytes - Viewed (0)