Posted on c/ElrondDevelopers 1 bog8304552146c/ElrondDevelopers 2 years ago I have this struct pub struct Pull { pub id: u64, pub locking_time_span: u64, pub apy_configuration: ManagedVec, } and I need at init time to have apy_configuration initialized to an empty vector. How do I initialize an empty ManagedVec ? Comment 1 Comments bog8304552146 2years ago I think I found it ManagedVec::new();
I think I found it ManagedVec::new();