Dmitry

Results 89 issues of Dmitry

noticed a small issue in how we were setting `silent` for the compiler subprocess. previously it used a combination of `and/or` which can lead to unexpected results. changed it to...

## Summary Closes #_ - [n] y/n | Does it introduce breaking changes? - [n] y/n | Is it dependent on a specific version of `cargo-contract` or `pallet-revive`? ## Description...

the `cd ../..` slipped into the same line with `bundle exec pod --version`, breaking the command. cleaned it up so it runs as intended.

updated `compare_subdicts` and `markdown_subtable` to safely handle cases where `old[file]` or `new[file]` might be `None`. using `(old.get(file) or {}).get(metric)` and `(new.get(file) or {}).get(metric)` prevents `AttributeError` and ensures the comparison works...

### Description noticed that the link to *Reentrancy After Istanbul* was broken. updated it to the correct URL so it points to the proper OpenZeppelin blog post.

### Description improved the encryption script to handle paths with spaces and ensure proper error handling. key fixes include wrapping `$DIR` in quotes, updating command and error checks, continuing on...

needs review

### Description fixed two problems that were causing unexpected behavior in strict mode: 1. replaced `process.cwd(...)` with `process.chdir(...)` to properly change the working directory to the monorepo root. 2. added...

needs review

### Description of the Changes **Mixing Async/Await with Synchronous Code** The function `sequentialExecution` is defined as an `async` function, but it uses `execSync`, which is synchronous. This creates confusion about...

In the heading "(Re)deploy db and contraсts," the word "contraсts" uses the Cyrillic letter "_с_" instead of the English "**c**." Corrected.