Skip to content

Commit

Permalink
Merge next
Browse files Browse the repository at this point in the history
  • Loading branch information
phklive committed Oct 3, 2024
2 parents 816fbb7 + 9dc06d7 commit 3479eb0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- [BREAKING] `send_asset` procedure was removed from the basic wallet (#829).
- [BREAKING] Updated limits, introduced additional limits (#889).
- Introduced `AccountDelta` maximum size limit of 32 KiB (#889).
- [BREAKING] Moved `MAX_NUM_FOREIGN_ACCOUNTS` into `miden-objects` (#904).
- Implemented `storage_size`, updated storage bounds (#886).

## 0.5.1 (2024-08-28) - `miden-objects` crate only
Expand Down
3 changes: 0 additions & 3 deletions miden-lib/src/transaction/memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,6 @@ pub const KERNEL_PROCEDURES_PTR: MemoryAddress = 401;
// ACCOUNT DATA
// ------------------------------------------------------------------------------------------------

/// Maximum number of the foreign accounts that can be loaded.
pub const MAX_NUM_FOREIGN_ACCOUNTS: u8 = 64;

/// The size of the memory segment allocated to core account data (excluding new code commitment)
pub const ACCT_DATA_MEM_SIZE: MemSize = 4;

Expand Down
3 changes: 3 additions & 0 deletions objects/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ pub const MAX_TX_EXECUTION_CYCLES: u32 = 1 << 30;
/// The minimum number of VM cycles a transaction needs to execute.
pub const MIN_TX_EXECUTION_CYCLES: u32 = 1 << 12;

/// Maximum number of the foreign accounts that can be loaded.
pub const MAX_NUM_FOREIGN_ACCOUNTS: u8 = 64;

// TRANSACTION BATCH
// ================================================================================================

Expand Down

0 comments on commit 3479eb0

Please sign in to comment.