Trait pallet_chainlink_feed::pallet::MutableFeedInterface [−][src]
pub trait MutableFeedInterface<T: Config>: FeedInterface<T> {
fn request_new_round(&mut self, requester: T::AccountId) -> DispatchResult;
}
Expand description
Trait for read-write access to a feed.
Required methods
fn request_new_round(&mut self, requester: T::AccountId) -> DispatchResult
fn request_new_round(&mut self, requester: T::AccountId) -> DispatchResult
Request that a new oracle round be started.
Warning: Fallible function that changes storage.