Skip to content

Commit 27e73c9

Browse files
committed
style(genesis): reorder multiplication operands for consistency
1 parent 156fb08 commit 27e73c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/genesis_config.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ pub const GenesisConfig = struct {
300300
defer file.close();
301301

302302
// Read the entire file to compute hash from raw bytes
303-
const file_bytes = try file.readToEndAlloc(allocator, 1024 * 1024 * 100); // 100 MB max
303+
const file_bytes = try file.readToEndAlloc(allocator, 100 * 1024 * 1024); // 100 MB max
304304
defer allocator.free(file_bytes);
305305

306306
// Compute hash from original file bytes (this matches Agave's behavior)

0 commit comments

Comments
 (0)