Add GenIdentity, an identity function for MappedShuffle.

We use this function in z_sendmany as part of the fix for #1779.
This commit is contained in:
Simon
2016-11-05 14:12:41 -07:00
parent 7c463780cf
commit 38276c6ba2
5 changed files with 24 additions and 6 deletions

View File

@@ -137,3 +137,8 @@ void seed_insecure_rand(bool fDeterministic)
insecure_rand_Rw = tmp;
}
}
int GenIdentity(int n)
{
return n-1;
}