Remove transaction encoding from storage layer (#12404)
This commit is contained in:
@@ -135,10 +135,7 @@ pub async fn upload_confirmed_blocks(
|
||||
break;
|
||||
}
|
||||
|
||||
let _ = match blockstore.get_confirmed_block(
|
||||
*slot,
|
||||
Some(solana_transaction_status::UiTransactionEncoding::Base64),
|
||||
) {
|
||||
let _ = match blockstore.get_confirmed_block(*slot) {
|
||||
Ok(confirmed_block) => sender.send((*slot, Some(confirmed_block))),
|
||||
Err(err) => {
|
||||
warn!(
|
||||
|
||||
Reference in New Issue
Block a user