diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-04-07 15:19:43 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-04-07 15:19:47 -0400 |
commit | 048ac8326b6952244f6e4453f4f8f6ab423eb926 (patch) | |
tree | 632ba085b32184b09e7f1658965479741d210845 /doc/developer-notes.md | |
parent | becd8dd2ec514f766ee13ac0c01cc74429b966b7 (diff) | |
parent | 17780d6f35a3951f649c3b7766b9283d9c18e39f (diff) |
Merge #12906: Avoid `interface` keyword to fix windows gitian build
17780d6f35 scripted-diff: Avoid `interface` keyword to fix windows gitian build (Russell Yanofsky)
Pull request description:
Rename `interface` to `interfaces`
Build failure reported by ken2812221 in https://github.com/bitcoin/bitcoin/pull/10244#issuecomment-379434756
Tree-SHA512: e02c97c728540f344202c13b036f9f63af23bd25e25ed7a5cfe9e2c2f201a12ff232cc94a93fbe37ef6fb6bf9e036fe62210ba798ecd30de191d09338754a8d0
Diffstat (limited to 'doc/developer-notes.md')
-rw-r--r-- | doc/developer-notes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md index c9fe3a7ab4..83bdc720e6 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -623,7 +623,7 @@ GUI holds: try to not directly access core data structures from Views. - Avoid adding slow or blocking code in the GUI thread. In particular do not - add new `interface::Node` and `interface::Wallet` method calls, even if they + add new `interfaces::Node` and `interfaces::Wallet` method calls, even if they may be fast now, in case they are changed to lock or communicate across processes in the future. |