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>> {
|
||||
proof: ProofOps,
|
||||
// TODO(hu55a1n1): replace `K` with `CwAbciKey`
|
||||
key: PrefixedKey<PrefixWasm, K>,
|
||||
value: V,
|
||||
pub key: PrefixedKey<PrefixWasm, K>,
|
||||
pub value: V,
|
||||
}
|
||||
|
||||
/// ABCI query response doesn't contain proof
|
||||
|
|
Loading…
Reference in a new issue