diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2019-12-04 15:14:43 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2019-12-05 09:49:11 -0800 |
commit | 8bda0960f94dfb6462fc810cd61a8a065730eb79 (patch) | |
tree | 00f0858e156cb12eb2ff90b15f8d5dc033a6aff3 /src/random.h | |
parent | 6fff333c9f00cf379562ed38c2599997f9821cfb (diff) |
Move events_hasher into RNGState()
Diffstat (limited to 'src/random.h')
-rw-r--r-- | src/random.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random.h b/src/random.h index 82dd6ecf9f..e1b105168d 100644 --- a/src/random.h +++ b/src/random.h @@ -95,7 +95,7 @@ void RandAddPeriodic() noexcept; * * Thread-safe. */ -void RandAddEvent(const uint32_t event_info); +void RandAddEvent(const uint32_t event_info) noexcept; /** * Fast randomness source. This is seeded once with secure random data, but |