Make CwProof key and value public
This commit is contained in:
parent
f4549aa790
commit
87323daaac
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue