-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Labels
enhancementNew feature or requestNew feature or requestwontfixThis will not be worked onThis will not be worked on
Description
function signature should probably look something like:
impl<'a, K, T> Map<'a, K, T>
where
T: Serialize + DeserializeOwned,
K: PrimaryKey<'a>,
{
pub fn query_all<Q: CustomQuery>(
&self,
querier: &QuerierWrapper<Q>,
remote_contract: Addr,
order: Order // Not sure this is required
) -> StdResult<Vec<T>> {
...
}
}
The purpose of this function is to allow the querying of external contracts, and should function similarly to the existing Map::query.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestwontfixThis will not be worked onThis will not be worked on