@@ -15,8 +15,8 @@ you'll learn.
15
15
Communications Channels
16
16
-----------------------
17
17
18
- Communication about Rust-Lightning happens primarily on #ldk-dev on the [ LDK slack] ( http://www.lightningdevkit.org/ )
19
- or #rust-bitcoin on IRC Freenode.
18
+ Communication about Rust-Lightning happens primarily on #ldk-dev on the [ LDK slack] ( http://www.lightningdevkit.org/ ) ,
19
+ but also #rust-bitcoin on IRC Freenode.
20
20
21
21
Discussion about code base improvements happens in GitHub issues and on pull
22
22
requests.
@@ -45,11 +45,11 @@ must be given to the long term technical debt. Every new features should
45
45
be covered by functional tests.
46
46
47
47
When refactoring, structure your PR to make it easy to review and don't
48
- hestitate to split in multiple small, focused PRs.
48
+ hestitate to split it into multiple small, focused PRs.
49
49
50
50
The Minimal Supported Rust Version is 1.22.0 (enforced by our Travis).
51
51
52
- Commit should cover both issues fixed and solutions rationale.
52
+ Commits should cover both issues fixed and solutions' rationale.
53
53
These [ guidelines] ( https://chris.beams.io/posts/git-commit/ ) should be kept in mind.
54
54
55
55
Peer review
@@ -72,22 +72,22 @@ Security
72
72
73
73
Security is the primary focus of Rust-Lightning; disclosure of security vulnerabilites
74
74
helps prevent user loss of funds. If you believe a vulnerability may affect other Lightning
75
- implementations please inform them.
75
+ implementations, please inform them.
76
76
77
77
Note that Rust-Lightning is currently considered "pre-production" during this time, there
78
- is no special handling of security issues. Please simpy open an issue on Github.
78
+ is no special handling of security issues. Please simply open an issue on Github.
79
79
80
80
Testing
81
81
-------
82
82
83
83
Related to the security aspect, Rust-Lightning developers take testing
84
- very seriously. Due to the modular nature of the project writing new functional
84
+ very seriously. Due to the modular nature of the project, writing new functional
85
85
tests is easy and good test coverage of the codebase is an important goal. Refactoring
86
86
the project to enable fine-grained unit testing is also an ongoing effort.
87
87
88
- Fuzzing is heavily encouraged: you will find all related fuzzing stuff under ` fuzz/ `
88
+ Fuzzing is heavily encouraged: you will find all related material under ` fuzz/ `
89
89
90
- Mutation testing is work-in-progess ; any contribution there would be warmly welcomed.
90
+ Mutation testing is work-in-progress ; any contribution there would be warmly welcomed.
91
91
92
92
Going further
93
93
-------------
0 commit comments