- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 50 for Takemoto (0.44 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/settings.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2019 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/settings.h> #include <policy/feerate.h> #include <policy/policy.h> bool fIsBareMultisigStd = DEFAULT_PERMIT_BAREMULTISIG; CFeeRate incrementalRelayFee = CFeeRate(DEFAULT_INCREMENTAL_RELAY_FEE);
C++ - Registered: 2021-01-05 01:31 - Last Modified: 2019-12-29 21:42 - 560 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/primitives/block.cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2019 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 <primitives/block.h> #include <hash.h> #include <tinyformat.h> uint256 CBlockHeader::GetHash() const { return SerializeHash(*this); } std::string CBlock::ToString() const {
C++ - Registered: 2021-01-05 01:31 - Last Modified: 2019-12-29 21:42 - 857 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-19 01:31 - Last Modified: 2020-12-31 08:45 - 1K bytes - Viewed (0) -
src/policy/settings.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2019 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_POLICY_SETTINGS_H #define BITCOIN_POLICY_SETTINGS_H #include <policy/policy.h> class CFeeRate; class CTransaction; // Policy settings which are configurable at runtime.
C - Registered: 2021-01-05 01:31 - Last Modified: 2019-12-29 21:42 - 1.1K 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/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/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/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)