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:
parent
92063851b1
commit
5ac27053e9
8 changed files with 32 additions and 32 deletions
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue