-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP generalized merkle proofs #85
Conversation
import ( | ||
"fmt" | ||
|
||
"github.com/tendermint/tendermint/crypto/merkle" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we really want tendermint as a dependency here? If so, wouldn't it make sense to do the merge (into tm) first? Or, do we want to move the interface ProofOperator
to this repo instead? I like the latter as Tendermint will import iavl anyways.
@@ -1,5 +1,30 @@ | |||
# Changelog | |||
|
|||
## 0.10.0 (July 11, 2018) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The version here does not match the number in version.go
.
} | ||
// XXX What is the encoding for keys? | ||
// We should decode the key depending on whether it's a string or hex, | ||
// maybe based on quotes and 0x prefix? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not clear if this is a todo that will be dealt later or if this should be clarified in this PR. @mossid?
This is superseded by #105 now. Can be closed. |
Depends on tendermint/tendermint#1912
Replaces #84