0

我在 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(())
             }

        }
     }

这里我写了两条语句,首先插入departmentidapproved_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 并对其进行更新?

4

1 回答 1

0

首先,这里有一些资源可以帮助您决定前进的道路:

于 2021-03-18T01:48:23.480 回答