/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/consensus/tx_check.h
20 строк
715 B
MarcoFalke
scripted-diff: [doc] Unify stale copyright headers
17 дек 2025, 00:21
17 дек 2025, 00:21
fa5f297
Код
Авторство
О чём код?
// Copyright (c) 2017-present 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_CONSENSUS_TX_CHECK_H #define BITCOIN_CONSENSUS_TX_CHECK_H /** * Context-independent transaction checking code that can be called outside the * bitcoin server and doesn't depend on chain or mempool state. Transaction * verification code that does call server functions or depend on server state * belongs in tx_verify.h/cpp instead. */ class CTransaction; class TxValidationState; bool CheckTransaction(const CTransaction& tx, TxValidationState& state); #endif // BITCOIN_CONSENSUS_TX_CHECK_H