Skip to content

Commit

Permalink
fix: proofs query to help debug app hash #176
Browse files Browse the repository at this point in the history
  • Loading branch information
p0mvn authored Apr 7, 2022
1 parent 0d45507 commit 66442bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/rootmulti/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ func (rs *Store) doProofsQuery(req abci.RequestQuery) abci.ResponseQuery {
}

for _, storeInfo := range commitInfo.StoreInfos {
res.ProofOps.Ops = append(res.ProofOps.Ops, commitInfo.ProofOp(storeInfo.Name))
res.ProofOps.Ops = append(res.ProofOps.Ops, crypto.ProofOp{Key: []byte(storeInfo.Name), Data: storeInfo.CommitId.Hash, })
}
return res
}
Expand Down

0 comments on commit 66442bf

Please sign in to comment.