Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/astria-composer/src/collectors/geth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ impl Geth {
let data = tx.rlp().to_vec();
let seq_action = SequenceAction {
rollup_id,
data,
data: data.into(),
fee_asset: fee_asset.clone(),
};

Expand Down
13 changes: 8 additions & 5 deletions crates/astria-composer/src/executor/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ use astria_core::{
};
use astria_eyre::eyre;
use once_cell::sync::Lazy;
use prost::Message;
use prost::{
bytes::Bytes,
Message as _,
};
use sequencer_client::SignedTransaction;
use serde_json::json;
use tempfile::NamedTempFile;
Expand Down Expand Up @@ -81,7 +84,7 @@ static TELEMETRY: Lazy<()> = Lazy::new(|| {
fn sequence_action() -> SequenceAction {
SequenceAction {
rollup_id: RollupId::new([0; ROLLUP_ID_LEN]),
data: vec![],
data: Bytes::new(),
fee_asset: "nria".parse().unwrap(),
}
}
Expand Down Expand Up @@ -411,7 +414,7 @@ async fn bundle_triggered_by_block_timer() {
// send two sequence actions to the executor, both small enough to fit in a single bundle
// without filling it
let seq0 = SequenceAction {
data: vec![0u8; cfg.max_bytes_per_bundle / 4],
data: vec![0u8; cfg.max_bytes_per_bundle / 4].into(),
..sequence_action()
};

Expand Down Expand Up @@ -498,13 +501,13 @@ async fn two_seq_actions_single_bundle() {
// send two sequence actions to the executor, both small enough to fit in a single bundle
// without filling it
let seq0 = SequenceAction {
data: vec![0u8; cfg.max_bytes_per_bundle / 4],
data: vec![0u8; cfg.max_bytes_per_bundle / 4].into(),
..sequence_action()
};

let seq1 = SequenceAction {
rollup_id: RollupId::new([1; ROLLUP_ID_LEN]),
data: vec![1u8; cfg.max_bytes_per_bundle / 4],
data: vec![1u8; cfg.max_bytes_per_bundle / 4].into(),
..sequence_action()
};

Expand Down
2 changes: 1 addition & 1 deletion crates/astria-composer/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fn encoded_len(action: &SequenceAction) -> usize {
pub(crate) fn sequence_action_with_n_bytes(n: usize) -> SequenceAction {
SequenceAction {
rollup_id: RollupId::new([0; ROLLUP_ID_LEN]),
data: vec![0; n],
data: vec![0; n].into(),
fee_asset: "nria"
.parse::<asset::Denom>()
.unwrap()
Expand Down
13 changes: 7 additions & 6 deletions crates/astria-composer/tests/blackbox/grpc_collector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use astria_core::{
primitive::v1::RollupId,
};
use ethers::prelude::Transaction;
use prost::bytes::Bytes;

use crate::helper::{
mount_broadcast_tx_sync_invalid_nonce_mock,
Expand Down Expand Up @@ -45,8 +46,8 @@ async fn tx_from_one_rollup_is_received_by_sequencer() {
.unwrap();
composer_client
.submit_rollup_transaction(SubmitRollupTransactionRequest {
rollup_id: rollup_id.as_ref().to_vec(),
data: tx.rlp().to_vec(),
rollup_id: Bytes::copy_from_slice(rollup_id.as_ref()),
data: Bytes::copy_from_slice(&tx.rlp()),
})
.await
.expect("rollup transactions should have been submitted successfully to grpc collector");
Expand Down Expand Up @@ -107,8 +108,8 @@ async fn invalid_nonce_causes_resubmission_under_different_nonce() {
.unwrap();
composer_client
.submit_rollup_transaction(SubmitRollupTransactionRequest {
rollup_id: rollup_id.as_ref().to_vec(),
data: tx.rlp().to_vec(),
rollup_id: Bytes::copy_from_slice(rollup_id.as_ref()),
data: Bytes::copy_from_slice(&tx.rlp()),
})
.await
.expect("rollup transactions should have been submitted successfully to grpc collector");
Expand Down Expand Up @@ -162,8 +163,8 @@ async fn single_rollup_tx_payload_integrity() {
.unwrap();
composer_client
.submit_rollup_transaction(SubmitRollupTransactionRequest {
rollup_id: rollup_id.as_ref().to_vec(),
data: tx.rlp().to_vec(),
rollup_id: Bytes::copy_from_slice(rollup_id.as_ref()),
data: Bytes::copy_from_slice(&tx.rlp()),
})
.await
.expect("rollup transactions should have been submitted successfully to grpc collector");
Expand Down
15 changes: 8 additions & 7 deletions crates/astria-conductor/src/celestia/block_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ mod test {
celestia::UncheckedSubmittedMetadata,
},
};
use bytes::Bytes;
use prost::Message as _;
use sequencer_client::{
tendermint::{
Expand Down Expand Up @@ -337,9 +338,9 @@ mod test {
seconds: 1,
nanos: 0,
}),
data_hash: data_hash.to_vec(),
rollup_transactions_root: rollup_transactions_root.to_vec(),
proposer_address: proposer_address.as_bytes().to_vec(),
data_hash: Bytes::copy_from_slice(&data_hash),
rollup_transactions_root: Bytes::copy_from_slice(&rollup_transactions_root),
proposer_address: Bytes::copy_from_slice(proposer_address.as_bytes()),
};
let header = SequencerBlockHeader::try_from_raw(header).unwrap();

Expand All @@ -359,7 +360,7 @@ mod test {

#[tokio::test]
async fn validate_sequencer_blob_with_chain_ids() {
let test_tx = b"test-tx".to_vec();
let test_tx = Bytes::from_static(b"test-tx");
let rollup_id = RollupId::from_unhashed_bytes(b"test-chain");
let grouped_txs = BTreeMap::from([(rollup_id, vec![test_tx.clone()])]);
let rollup_transactions_tree =
Expand All @@ -382,9 +383,9 @@ mod test {
seconds: 1,
nanos: 0,
}),
data_hash: data_hash.to_vec(),
rollup_transactions_root: rollup_transactions_root.to_vec(),
proposer_address: proposer_address.as_bytes().to_vec(),
data_hash: Bytes::copy_from_slice(&data_hash),
rollup_transactions_root: Bytes::copy_from_slice(&rollup_transactions_root),
proposer_address: Bytes::copy_from_slice(proposer_address.as_bytes()),
};
let header = SequencerBlockHeader::try_from_raw(header).unwrap();

Expand Down
3 changes: 2 additions & 1 deletion crates/astria-conductor/src/celestia/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ use astria_eyre::eyre::{
bail,
WrapErr as _,
};
use bytes::Bytes;
use celestia_types::nmt::Namespace;
use futures::{
future::{
Expand Down Expand Up @@ -101,7 +102,7 @@ pub(crate) struct ReconstructedBlock {
pub(crate) celestia_height: u64,
pub(crate) block_hash: [u8; 32],
pub(crate) header: SequencerBlockHeader,
pub(crate) transactions: Vec<Vec<u8>>,
pub(crate) transactions: Vec<Bytes>,
}

impl ReconstructedBlock {
Expand Down
4 changes: 2 additions & 2 deletions crates/astria-conductor/src/executor/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ impl Client {
pub(super) async fn execute_block_with_retry(
&mut self,
prev_block_hash: Bytes,
transactions: Vec<Vec<u8>>,
transactions: Vec<Bytes>,
timestamp: Timestamp,
) -> eyre::Result<Block> {
use prost::Message;

let transactions = transactions
.into_iter()
.map(|tx| RollupData::decode(tx.as_slice()))
.map(RollupData::decode)
.collect::<Result<_, _>>()
.wrap_err("failed to decode tx bytes as RollupData")?;

Expand Down
2 changes: 1 addition & 1 deletion crates/astria-conductor/src/executor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ struct ExecutableBlock {
hash: [u8; 32],
height: SequencerHeight,
timestamp: pbjson_types::Timestamp,
transactions: Vec<Vec<u8>>,
transactions: Vec<Bytes>,
}

impl ExecutableBlock {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions crates/astria-core/src/generated/astria.execution.v1alpha1.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading