move icon indicating copy to clipboard operation
move copied to clipboard

Results 238 move issues
Sort by recently updated
recently updated
newest added

# 🚀 Feature Request Might be good to have a coverage report and add a badge to https://github.com/move-language/move/blob/main/README.md ## Motivation **show current codebase test coverage status and QA on PRs**...

enhancement

While `move-analyzer --version` reports `1.0.0`, the package itself is at version `0.0.0`. This is because version information is hardcoded to the `clap()` usage, and the `Cargo.toml` package manifest is out-of-date....

## Motivation (Write your motivation for proposed changes here.) ### Have you read the [Contributing Guidelines on pull requests](https://github.com/move-language/move/blob/main/CONTRIBUTING.md#developer-workflow)? (Write your answer here.) ## Test Plan (Share your test plan...

The first commit fixes two bugs to re-enable the failing test: - collect pointers for write-backs even when the local slot is destroyed - fix the indexing of the borrow...

## Motivation `LdConst` currently deserializes the BCS encoded constants on every invocation. This is unnecessary and also makes it considerably slower than `Ld*` of same data size. This PR uses...

LdConst deserializes constants from BCS every-time we hit LdConstSee [here](https://github.com/move-language/move/blob/main/language/move-vm/runtime/src/interpreter.rs#L806). Seems wasteful. We should keep a pool/lookup-table of already deserialized constants either in the resolver [here](https://github.com/move-language/move/blob/main/language/move-vm/runtime/src/interpreter.rs#L800) or somewhere else. Attempt...

## Motivation Errmap strings have extra leading spaces in them. ### Have you read the [Contributing Guidelines on pull requests](https://github.com/move-language/move/blob/main/CONTRIBUTING.md#developer-workflow)? Yes ## Test Plan N/A

## Motivation This PR makes instruction execution bound an option in the CLI options and increments the default value since 5000 is too low. ## Test Plan cargo test

## Motivation This allows us to deserialize human readable inputs to allow configs and other human readable things to be easier to parse ### Have you read the [Contributing Guidelines...

Fixed broken `prover-inconsistency-test` CI job and moved it from `daily` to `ci-pre-land` as `prover-tests`, since there seems to be no reason to have it in the daily run instead of...