1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 06:01:48 +02:00

Rename ValidPathInfo::hash -> narHash for consistency

This commit is contained in:
Eelco Dolstra 2016-02-16 11:49:12 +01:00
parent 92063851b1
commit 5ac27053e9
8 changed files with 32 additions and 32 deletions

View file

@ -92,7 +92,7 @@ struct ValidPathInfo
{
Path path;
Path deriver;
Hash hash;
Hash narHash;
PathSet references;
time_t registrationTime = 0;
unsigned long long narSize = 0; // 0 = unknown
@ -102,7 +102,7 @@ struct ValidPathInfo
{
return
path == i.path
&& hash == i.hash
&& narHash == i.narHash
&& references == i.references;
}
};