aptos-core icon indicating copy to clipboard operation
aptos-core copied to clipboard

Aptos is a layer 1 blockchain built to support the widespread use of blockchain through better technology and user experience.

Results 1509 aptos-core issues
Sort by recently updated
recently updated
newest added
trafficstars

The following PoC throws TOO_MANY_TYPE_NODES invariant violation error in [create_vec_ty](https://github.com/aptos-labs/aptos-core/blob/d641f201a1ec26c1f55078e4977931f83cfe3512/third_party/move/move-vm/types/src/loaded_data/runtime_types.rs#L935) -> [check](https://github.com/aptos-labs/aptos-core/blob/d641f201a1ec26c1f55078e4977931f83cfe3512/third_party/move/move-vm/types/src/loaded_data/runtime_types.rs#L1034). But if we turn off paranoid mode it will simply allow constructing types exceeding the max node limit:...

bug
compiler-v2

## Description In the simulation VM, it was charging the fee for keyless authentication only once if it was a single key keyless txn. It was not charging proportionate to...

Stale

## Description Function added for correct argument type Object with proper unit tests ## How Has This Been Tested? Unit Tests

Stale

# 🐛 Bug Consider the following transactional test: ```move //# publish module 0xc0ffee::m { public fun foo() {} } //# publish module 0xc0ffee::n_ok { fun main() { use 0xc0ffee::m; let...

bug
compiler-v2

- **[Scheduled Txns] Introduce scheduled txns move module** - **Buggy code with issue** - **Address review comments** - **Consider the size of Scheduled txn being inserted** - **Working draft** -...

It appears the following code can be published even if function types are not enabled: ``` fun transfer_and_create_account(some_f: |u64|u64): u64 { some_f(3) } ```

bug
compiler-v2

# 🐛 Feature Request In `Move.toml`, we can specify language versions without any error: ``` [build] language_version = "2.2.0" ``` But this does not seem to be hooked up to...

bug
compiler-v2
move-package

# 🐛 Bug Internal move compiler error caused by below snipped ## To reproduce ``` fun ret_borrow_tup(): &(u64, u64) { abort 0 } ``` ## Expected Behavior This should result...

bug
compiler-v2

### 🐛 Bug Report: `[addresses]` values in `Move.toml` are not passed to dependencies **Repo:** [https://github.com/banool/aptos-subdomain-manager](https://github.com/banool/aptos-subdomain-manager) **Command:** `aptos move compile` **Aptos Cli Version**: `6.2.0` #### ✅ Working Example: Running the following...

bug
compiler-v2
move-package
move-tools
customer-bug

There are multiple use cases where a need arises to create a function value from symbolic information (like address and name of function, given as a string). So far we...

enhancement
compiler-v2
customer-bug