iroha
iroha copied to clipboard
Iroha - A simple, enterprise-grade decentralized ledger
### Description of the Change #### Features 1. Enable doc tests in `tests_with_coverage` job 2. Enable `--no-fail-fast` in `tests_with_coverage` job 3. Add tests with `--no-default-features` mainly for `no_std` 5. Consolidate...
### Description of the Change - Add support for trait impls (methods are generated with following name `Type__Trait__method`) - Remove requirements for items to have doc string ### Issue Closes...
Signed-off-by: 6r1d ### Description of the Change Adds example that mirrors tutorial examples, so that changes in the API can be propagated by directly taking them from GitHub. ### Issue...
### Description of the Change #### EvaluatesTo (#2001) * `Into EvaluatesTo` conversion now has stricter bounds which provides static type checking * For some cases there is no possibility to...
If we take a look at `crypto/src/signature.rs` we can see the `SignatureOf` which is used in our `data_model` API (namely in transactions API). For instance, `ValidTransaction` is defined as: ```rs...
Signed-off-by: Vladimir Pesterev ### Description of the Change I've added sorting parameter into ISI queries. The sorting will apply only to entities that have metadata. [More about here](https://github.com/hyperledger/iroha/issues/2553). - [x]...
### Documentation URL(s) _coming soon_ ### Description - [ ] Un-ignore the doc test `id_derive` - [ ] Fix and un-ignore the doc test `filter_derive` _commit SHA is coming soon_...
### Description of the Change Add possibility to get info why Burrow execution failed, what is stateful validation error code ### Issue ### Benefits Ability to get error code from...
Check [this](https://github.com/hyperledger/iroha/pull/2557#discussion_r934203281) comment. Payload (currently a `Vec`) in structures like `PublicKey`, `PrivateKey` and `Signature` is immutable for the lifetime of the wrapping type. This means that capacity field of the...
### GIT commit hash 5ff6b67d392a0f8238d483918ea36e82d9a22937 ### Minimum working example ```rs use core::str::FromStr as _; use iroha_client::{client::Client, Configuration}; use iroha_data_model::prelude::*; fn main() -> Result