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

Request that a new oracle round be started.

Warning: Fallible function that changes storage.

Implementors