- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 55 for Takemoto (0.6 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/pow.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2018 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_POW_H #define BITCOIN_POW_H #include <consensus/params.h> #include <stdint.h> class CBlockHeader; class CBlockIndex; class uint256;
C - Registered: 2021-01-05 01:31 - Last Modified: 2018-07-27 11:15 - 834 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/key_io.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2018 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_KEY_IO_H #define BITCOIN_KEY_IO_H #include <chainparams.h> #include <key.h> #include <pubkey.h> #include <script/standard.h> #include <string> CKey DecodeSecret(const std::string& str);
C - Registered: 2021-01-19 01:31 - Last Modified: 2018-07-27 11:15 - 977 bytes - Viewed (0) -
src/amount.h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2018 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_AMOUNT_H #define BITCOIN_AMOUNT_H #include <stdint.h> /** Amount in satoshis (Can be negative) */ typedef int64_t CAmount; static const CAmount COIN = 100000000;
C - Registered: 2021-01-19 01:31 - Last Modified: 2018-12-29 09:15 - 1.1K bytes - Viewed (0)