From b1c2594a587eee0281e61e75989a075c38d6cb2b Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Tue, 30 Jan 2024 12:56:04 +0000 Subject: [PATCH] `[ink_e2e]` remove legacy `build!` macro --- crates/e2e/src/lib.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/crates/e2e/src/lib.rs b/crates/e2e/src/lib.rs index ad8bc898950..a9673a2f489 100644 --- a/crates/e2e/src/lib.rs +++ b/crates/e2e/src/lib.rs @@ -127,11 +127,3 @@ pub fn account_id(account: AccountKeyring) -> ink_primitives::AccountId { ink_primitives::AccountId::try_from(account.to_account_id().as_ref()) .expect("account keyring has a valid account id") } - -/// Builds a contract and imports its scaffolded structure as a module. -#[macro_export] -macro_rules! build { - ($($arg:tt)*) => ( - ink_e2e::smart_bench_macro::contract!($($arg)*) - ); -}