Skip to content

Commit

Permalink
reduced mainnet size
Browse files Browse the repository at this point in the history
  • Loading branch information
Scooletz committed Oct 19, 2024
1 parent 9f7acb7 commit 2422dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Paprika.Importer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
var dbExists = Directory.Exists(dataPath);

const long GB = 1024 * 1024 * 1024;
var size = (path.Contains("mainnet") ? 512L : 64L) * GB;
var size = (path.Contains("mainnet") ? 320L : 64L) * GB;

if (dbExists)
{
Expand Down

0 comments on commit 2422dcd

Please sign in to comment.