Greg Szabo
Greg Szabo
Is it possible to implement some minimal input parsing and move from environment variables to input parameters? Not urgent, just looks better and translates easier to an end-user. Except for...
This PR introduces the `yubihsm-unwrap` command, the other half of `yubihsm-wrap`. It allows encrypted key backups ("offline wraps") to be decrypted using the wrap key. This is useful in cases...
Michael was trying to broadcast a test message from a 3-of-5 multisig address. The command should obviously fail, because he didn't sign it and it was just a test. But...
`multisig broadcast` states: ``` -k, --key string name of the local multisig key name, flag overrides the config ``` `config.toml` states: ``` [[keys]] # 2/4 (af,eb,gs,mc), ceph val oper standard...
# Issue description With the introduction of domain type restrictions, we need a consistent way of generating domain-type structs. In this issue we describe the current status, the expected end-status...
pbt-gen seems a standalone tool. I think it should be under the tools folder. Can we move it? **What's the definition of "done" for this issue?** A: pbt-gen works and...
https://github.com/informalsystems/tendermint-rs/blob/7eaa81bddd764ab76e68fce0bb2bcd094168bedd/proto/src/protobuf.rs#L1-L4 Prost now has a way to not include comments of the built-in types in the generated code (which caused doctest issues). Remove the custom Timestamp and Duration implementation. Benefit:...
`evidence::Params` is currently JSON serializes the domain struct. It could easily be converted to the tendermint_proto::types::EvidenceParams struct instead, since it's already its proto-type. It contains a `Duration` which is also...
I have a suggestion on how to further improve the integration test situation: Currently, we always run against the lates (go) tendermint docker image. On one hand this is really...
This is a reimplementation of #742. Unfortunately, ed25519_consensus doesn't support signing with the expanded secret key, so I had to rely on ed25519-dalek. The new version of that crate hid...