iroha
iroha copied to clipboard
Iroha - A simple, enterprise-grade decentralized ledger
## Description This PR provide an example how multisignature transactions could be implemented using iroha triggers. In this PR i've tried to make as small invasive changes into the core...
remove `ignore` from this test after #4353 has made it fail
## Description Migrate from `warp` to `axum`. With current implementation i tried to preserve the same behavior as before. I would suggest further improvements in the separate PRs. ### Linked...
### OS and Environment Linux ### GIT commit hash 4779723cddfe64eccaec375f0cb60b9a6277e994 ### Minimum working example / Steps to reproduce ```sh docker compose -f configs/swarm/docker-compose.single.yml up ``` Update: also can be reproduced...
### Feature request There are several value types for assets exist: ``` "AssetValue": { "Enum": [ { "tag": "Quantity", "discriminant": 0, "type": "u32" }, { "tag": "BigQuantity", "discriminant": 1, "type":...
[Currently](https://github.com/hyperledger/iroha/blob/db961649d81ec65a171dbcc05570218dd68370d3/core/src/smartcontracts/isi/asset.rs#L161), transferring a store asset removes the whole asset from the source account, and tries to insert it into the target account, with no effect if the target account already...
@DCNick3 I agree it's quite unfortunate that this doesn't work from within smart contracts, but it's still an improvement. Like was previously possible, from within smart contracts user would have...
It's best to use the inherent `str::parse` method across the project instead of `FromStr::from_str` since it doesn't require bringing `FromStr` into the scope.
### OS and Environment MacOS M1, Docker Hub ### GIT commit hash 1de71ba ### Minimum working example / Steps to reproduce ```bash docker compose up docker restart swarm-irohad0-1 ``` ###...
We should consider replacing `lol_alloc` with `dlmalloc-rs`. I would expect some benefits: - `dlmalloc-rs` is used by rust std itself as default allocator for wasm target, so we can expect...