我在 decl_storage 中有以下变量:
Candidate get(fn candidate_name): map hasher(blake2_128_concat) T::AccountId => Vec<u8>;
这是我的 decl_module 函数:
#[weight = 10_000 + T::DbWeight::get().reads_writes(2,2)]
pub fn add_peers_to_deparment(origin, departmentid: u128) -> dispatch::DispatchResult {
let who = ensure_signed(origin)?;
let mut approved_peer_dep = PeerDepartments::<T>::get(&who);
match approved_peer_dep.binary_search(&departmentid) {
Ok(_) => Err(Error::<T>::DepartmentExists.into()),
Err(index) => {
approved_peer_dep.insert(index, departmentid.clone());
PeerDepartments::<T>::insert(&who,approved_peer_dep);
Self::deposit_event(RawEvent::PeerDepartment(departmentid, who));
Ok(())
}
}
}
这里我写了两条语句,首先插入departmentid
到approved_peer_dep
,然后再插入到区块链存储PeerDepartments
中。
approved_peer_dep.insert(index, departmentid.clone());
PeerDepartments::<T>::insert(&who,approved_peer_dep);
问题是如果approved_peer_dep
包含一个非常大Vec
的,blockchain ( PeerDepartments
) 会插入包含所有使用更多资源的部门的完整 Vec,还是会使用添加单个部门的资源?如果它将使用更多资源,那么编写代码的更好方法是什么。
如何拥有数据结构,以便我可以通过密钥访问 Vec 并对其进行更新?