mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-05-09 18:17:57 +00:00
Box the test steps
This commit is contained in:
@@ -25,9 +25,9 @@ use crate::{metadata::ContractInstance, traits::ResolutionContext};
|
||||
#[serde(untagged)]
|
||||
pub enum Step {
|
||||
/// A function call or an invocation to some function on some smart contract.
|
||||
FunctionCall(Input),
|
||||
FunctionCall(Box<Input>),
|
||||
/// A step for performing a balance assertion on some account or contract.
|
||||
BalanceAssertion(BalanceAssertion),
|
||||
BalanceAssertion(Box<BalanceAssertion>),
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Default, Serialize, Deserialize, Eq, PartialEq)]
|
||||
|
||||
Reference in New Issue
Block a user