WIP: Remove transparent transactions

This commit is contained in:
likho 2024-04-22 17:52:12 +02:00
parent f748b29eca
commit 9024519f28
1 changed files with 0 additions and 2 deletions

View File

@ -14,7 +14,6 @@ use crate::{
serialization::{TrustedPreallocate, MAX_PROTOCOL_MESSAGE_LEN},
sprout,
transaction::Transaction,
transparent,
value_balance::{ValueBalance, ValueBalanceError},
};
@ -81,7 +80,6 @@ impl Block {
.first()
.and_then(|tx| tx.inputs().first())
.and_then(|input| match input {
transparent::Input::Coinbase { ref height, .. } => Some(*height),
_ => None,
})
}