Add a TODO comment for a missing no-coinbase check
This commit is contained in:
parent
4aedf08a95
commit
a6f916671a
|
@ -152,10 +152,10 @@ where
|
||||||
|
|
||||||
// Handle transparent inputs and outputs.
|
// Handle transparent inputs and outputs.
|
||||||
if tx.is_coinbase() {
|
if tx.is_coinbase() {
|
||||||
// do something special for coinbase transactions
|
|
||||||
check::coinbase_tx_no_joinsplit_or_spend(&tx)?;
|
check::coinbase_tx_no_joinsplit_or_spend(&tx)?;
|
||||||
} else {
|
} else {
|
||||||
// otherwise, check no coinbase inputs
|
// TODO: check no coinbase inputs
|
||||||
|
|
||||||
// feed all of the inputs to the script verifier
|
// feed all of the inputs to the script verifier
|
||||||
let cached_ffi_transaction =
|
let cached_ffi_transaction =
|
||||||
Arc::new(CachedFfiTransaction::new(tx.clone()));
|
Arc::new(CachedFfiTransaction::new(tx.clone()));
|
||||||
|
|
Loading…
Reference in New Issue