refactor(sequencer): add test for mempool and bring back standalone feature

This commit is contained in:
Daniil Polyakov
2026-08-12 22:50:50 +03:00
parent ea1b454672
commit f91d0da8e1
13 changed files with 235 additions and 42 deletions
+15
View File
@@ -11,6 +11,21 @@ mod guests {
include!(concat!(env!("OUT_DIR"), "/methods.rs"));
}
#[must_use]
#[inline]
pub const fn simple_balance_transfer() -> Program {
use guests::{
SIMPLE_BALANCE_TRANSFER_ELF, SIMPLE_BALANCE_TRANSFER_ID, SIMPLE_BALANCE_TRANSFER_PATH,
};
let _unused = SIMPLE_BALANCE_TRANSFER_PATH;
Program::new_unchecked(
SIMPLE_BALANCE_TRANSFER_ID,
Cow::Borrowed(SIMPLE_BALANCE_TRANSFER_ELF),
)
}
#[must_use]
#[inline]
pub const fn chain_caller() -> Program {