Henry de Valence
Henry de Valence
This should happen after #1470, but would be a good cleanup.
Wait, why would a future shielded cross-chain token transfer use ICS20? Since it needs changes on both chains, wouldn't it be better to use a different protocol, rather than trying...
Since the DAO account is special, and does not have an address, we probably want to do this by changing the `FundingStreams` from a `Vec` to a `Vec` plus a...
It looks like the way to do this is: - Use [`tls_config`](https://docs.rs/tonic/latest/tonic/transport/struct.Server.html#method.tls_config) on the server builder to set a TLS config - Configure a [`ServerTlsConfig`](https://docs.rs/tonic/latest/tonic/transport/struct.ServerTlsConfig.html) with the cert details. Since...
We might want to wait to do this until after removing Postgres from the deployment setup.
The new piece of code could be called "distributions", along the lines of the Cosmos SDK's distributions module.
The lack of implementation for `usize` was because `usize` is most commonly used to index arrays, and providing `ConditionallySelectable` for `usize` could lead someone to think that doing ``` let...
Backreference: #20 -- as yet there hasn't been a compelling use-case for this functionality.
Hmm, regardless of the `Default` bound, that code really looks like it should be using `Option` or `Result`, because if the input is invalid, the computation can't sensibly continue.
One thing that might work to relax the `Default` bound would be to unconditionally apply the closure to the `CtOption`'s `T` value, but I haven't thought it through yet...