![]() |
PRCYCoin
2.0.0.7rc1
P2P Digital Currency
|
#include "tx_verify.h"#include "consensus/consensus.h"#include "main.h"#include "script/interpreter.h"#include "timedata.h"Go to the source code of this file.
Functions | |
| bool | IsFinalTx (const CTransaction &tx, int nBlockHeight, int64_t nBlockTime) |
| Check if transaction is final and can be included in a block with the specified height and time. More... | |
| unsigned int | GetLegacySigOpCount (const CTransaction &tx) |
| Count ECDSA signature operations the old-fashioned (pre-0.6) way. More... | |
| bool | CheckTransaction (const CTransaction &tx, bool fRejectBadUTXO, CValidationState &state) |
| Transaction validation functions. More... | |
| bool CheckTransaction | ( | const CTransaction & | tx, |
| bool | fRejectBadUTXO, | ||
| CValidationState & | state | ||
| ) |
Transaction validation functions.
Context-independent validity checks
Definition at line 42 of file tx_verify.cpp.
| unsigned int GetLegacySigOpCount | ( | const CTransaction & | tx | ) |
Count ECDSA signature operations the old-fashioned (pre-0.6) way.
Definition at line 30 of file tx_verify.cpp.
| bool IsFinalTx | ( | const CTransaction & | tx, |
| int | nBlockHeight = 0, |
||
| int64_t | nBlockTime = 0 |
||
| ) |
Check if transaction is final and can be included in a block with the specified height and time.
Consensus critical.
Definition at line 12 of file tx_verify.cpp.
1.8.17