Make CwProof key and value public

This commit is contained in:
hu55a1n1 2024-01-03 08:40:53 -08:00
parent f4549aa790
commit 87323daaac

View file

@ -22,8 +22,8 @@ use crate::{
pub struct CwProof<K = Vec<u8>, V = Vec<u8>> { pub struct CwProof<K = Vec<u8>, V = Vec<u8>> {
proof: ProofOps, proof: ProofOps,
// TODO(hu55a1n1): replace `K` with `CwAbciKey` // TODO(hu55a1n1): replace `K` with `CwAbciKey`
key: PrefixedKey<PrefixWasm, K>, pub key: PrefixedKey<PrefixWasm, K>,
value: V, pub value: V,
} }
/// ABCI query response doesn't contain proof /// ABCI query response doesn't contain proof