Skip to content

Commit

Permalink
Fix constant value
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta committed Jan 17, 2024
1 parent 70513f0 commit 08e037e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/src/vm/runners/cairo_pie.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ mod serde_impl {
pub const ADDR_BASE: u64 = 0x8000000000000000; // 2 ** (8 * ADDR_BYTE_LEN - 1)
pub const OFFSET_BASE: u64 = 0x800000000000; // 2 ** OFFSET_BIT_LEN
pub const RELOCATE_BASE: &str =
"8000000000000000000000000000000000000000000000000000000000000000"; // 2 ** (8 * FIELD_BYTE_LEN - 1)
"57896044618658097711785492504343953926634992332820282019728792003956564819968"; // 2 ** (8 * FIELD_BYTE_LEN - 1)

struct Felt252Wrapper<'a>(&'a Felt252);

Expand Down

0 comments on commit 08e037e

Please sign in to comment.