Struct ethcontract_common::artifact::InsertResult [−][src]
pub struct InsertResult<'a> {
pub inserted_contract: ContractMut<'a>,
pub old_contract: Option<Contract>,
}Expand description
Result of inserting a nre contract into an artifact.
Fields
inserted_contract: ContractMut<'a>Reference to the newly inserted contract.
old_contract: Option<Contract>If insert operation replaced an old contract, it will appear here.