Andreas M. Antonopoulos
c2d3ca7c91
Merge pull request #79 from boyerjohn/patch-1
...
clarification of onion routing
2019-10-13 10:55:47 -04:00
Andreas M. Antonopoulos
912f586a39
Merge pull request #78 from mulles/patch-1
...
Update ch01.asciidoc
2019-10-13 10:54:43 -04:00
Andreas M. Antonopoulos
03478cbe6e
Merge pull request #77 from pkrasam/develop
...
LN applications - streaming service
2019-10-13 10:54:16 -04:00
Andreas M. Antonopoulos
2ecbfe3603
ch1 edits for clarity and flow
2019-10-13 10:52:07 -04:00
John Boyer
e6e6d600e9
clarification of onion routing
2019-10-06 11:47:51 -04:00
mulles
ca74a0d9d6
Update ch01.asciidoc
...
Corrected a Typo: ingredients not ingreedients ;)
So fare the book was interesting, thx for the effort ;)
2019-10-06 17:17:27 +02:00
pk
6af20cebf5
LN applications - streaming service
2019-10-06 13:53:50 +11:00
Andreas M. Antonopoulos
0021a0335d
Merge pull request #74 from practicalswift/eol-linter
...
travis: Add linter checking for proper end-of-line punctuation
2019-10-05 13:21:30 -04:00
Andreas M. Antonopoulos
a54a4810ff
Merge pull request #75 from Moller40/develop
...
One small language fix
2019-10-05 13:21:15 -04:00
Andreas M. Antonopoulos
4721edc6b5
Merge pull request #76 from eupn/patch-1
...
glossary.asciidoc: add Bech32 description
2019-10-05 13:20:01 -04:00
eupn
326234cf5a
glossary.asciidoc: add Bech32 description
2019-10-02 17:06:01 +08:00
Moller40
fa6a1dfbe9
One small language fix
...
Change-Id: I2be0befb5063834d3b27ff22e585647ab22d236d
2019-10-01 13:40:09 +02:00
practicalswift
aba2f7f429
travis: Add linter checking for proper end-of-line punctuation
2019-09-29 19:51:16 +00:00
Andreas M. Antonopoulos
a089c4b35a
Merge pull request #73 from practicalswift/eol
...
Fix missing end-of-line punctuation
2019-09-29 10:07:08 -04:00
practicalswift
d63240ff3e
Fix missing end-of-line punctuation
2019-09-28 15:06:35 +00:00
Andreas M. Antonopoulos
4c58bd5d17
Spelling fixed
2019-09-28 10:57:26 -04:00
Andreas M. Antonopoulos
7bfb8a0bd8
I broke the travis!
2019-09-28 10:53:14 -04:00
Andreas M. Antonopoulos
ffd991ecbc
Fix travis error (Satoshi-style double space after period)
2019-09-28 10:46:48 -04:00
Andreas M. Antonopoulos
1f41205d24
Show line numbers on Travis errors
...
grep -n (line numbers)
grep --color (colorize output)
2019-09-28 10:43:42 -04:00
Andreas M. Antonopoulos
3e0d20ef0e
Fix line endings - travis repair
2019-09-28 10:40:08 -04:00
Andreas M. Antonopoulos
293104d63f
Merge pull request #71 from practicalswift/go-misspell
...
travis: Add spell checker "misspell" (Go)
2019-09-28 10:21:49 -04:00
Andreas M. Antonopoulos
59258fd3b7
Merge branch 'develop' into go-misspell
2019-09-28 10:21:35 -04:00
Andreas M. Antonopoulos
6be13e040e
Merge pull request #70 from practicalswift/end-of-sentence
...
travis: Add linter to detect incorrect capitalisation, or when the end of a sentence is not on the same line as the beginning of the sentence
2019-09-28 10:20:34 -04:00
Andreas M. Antonopoulos
0d0195414f
Merge pull request #55 from lnbook/Enegnei-patch-1
...
More grammar, spelling, syntax changes
2019-09-28 10:19:19 -04:00
Andreas M. Antonopoulos
fa667d8cf8
Merge branch 'develop' into Enegnei-patch-1
2019-09-28 10:18:51 -04:00
Andreas M. Antonopoulos
fd27c2e1c5
Merge pull request #69 from practicalswift/remove-unused-file
...
Remove unused file 01-what-is.asciidoc
2019-09-28 10:16:45 -04:00
practicalswift
f1ea215f61
Fix typo
2019-09-22 14:03:47 +00:00
practicalswift
d6077124ae
linter: Add spell checker "misspell" (Go)
2019-09-22 14:02:55 +00:00
practicalswift
48b0ea9f8e
Fix incorrect capitalization
2019-09-22 08:19:59 +00:00
practicalswift
a74436ccad
travis: Add linter to detect incorrect capitalization or when the end of a sentence is not on the same line as the beginning of the sentence
2019-09-22 08:19:59 +00:00
practicalswift
8fe9e859b4
Remove unused file
2019-09-21 22:27:09 +00:00
Rene Pickhardt
80a4fc0a08
added turbo channels not sure about the section
2019-09-20 21:57:20 +02:00
practicalswift
4b418666e6
travis: Add linter to make sure all lines end with a newline character ( #68 )
...
* travis: Add linter to make sure all lines end with a newline character
Ending newlines make line based Unix tools such as `tail`, etc work as expected.
Without ending newline:
```
prompt$ tail -1 ch02.asciidoc
* blockchain to save all transactions vs blockchain as a court system prompt$
```
With ending newline:
```
prompt$ tail -1 ch02.asciidoc
* blockchain to save all transactions vs blockchain as a court system
prompt$
```
Also, makes `git` not complain about "No newline at end of file" in diffs.
* Add newline at end of file
* Remove trailing whitespace
2019-09-20 13:48:52 -06:00
practicalswift
b903077184
travis: Add linter to detect multiple blank lines between paragraphs ( #66 )
...
* travis: Add linter to detect multiple blank lines between paragraphs
* Use one blank line between paragraphs
* Remove trailing spaces
2019-09-20 13:46:48 -06:00
Rene Pickhardt
d83eba9dcd
proposed an outline and selectin of topics for chapter two by following the structure of mastering bitcoin but adapting it to mastering the lightning network
2019-09-17 21:08:50 +02:00
Rene Pickhardt
b8d1f50eb2
added more bulletpoints and suggestions for the structure
2019-09-17 21:07:57 +02:00
yahiheb
8cd4d1656e
Use LN abbreviation for Lightning Network (ch01 file) ( #57 )
...
* Use LN abbreviation for Lightning Network (ch01 file)
* Update ch01.asciidoc
Co-Authored-By: nopara73 <adam.ficsor73@gmail.com>
2019-09-17 05:38:45 -06:00
yahiheb
3da66d3d9e
Nitpicking ( #65 )
2019-09-17 00:51:27 -06:00
practicalswift
e6c63788d3
travis: Add linter for lexical illusions (duplicate words) ( #64 )
2019-09-16 16:32:07 -06:00
yahiheb
4f7b946aad
Fix typos ( #63 )
2019-09-16 13:59:02 -06:00
practicalswift
853c2187d0
travis: Use "exit 1" in case of linter failure ( #62 )
...
* travis: Use "exit 1" in case of linter failure
* Fix double spacing
2019-09-16 11:18:31 -06:00
practicalswift
8b8badc050
travis: Add linter to detect "Satoshi style" double spacing ( #61 )
...
* Remove double spaces
* travis: Add linter to detect double spacing
2019-09-16 10:47:01 -06:00
practicalswift
c0d3b46e9f
travis: Add linter to make sure Unix style line endings are used. Add trailing whitespace linter. Fix typos. ( #60 )
...
* travis: Add linter to make sure Unix style line endings are used
* Fix typos
* travis: Add linter to detect trailing spaces at end of line
* Remove trailing whitespace
* Use consistent indentation
* travis: Add linter guarding against use of tabs
2019-09-16 10:38:23 -06:00
Rene Pickhardt
7c525f2dec
added the first mediabox to the book as a TIP
2019-09-16 17:08:01 +02:00
Rene Pickhardt
b065514e3b
added 7 ingredients for a payment channel protocol
2019-09-16 17:02:59 +02:00
Andreas M. Antonopoulos
949274e688
Added Travis build status badge
2019-09-15 11:11:41 -04:00
Rene Pickhardt
919b743c1d
comparison routing vs path finding
2019-09-12 23:25:49 +02:00
Enegnei
0d97ecb029
Changed 'wallet' to 'address'
2019-09-12 23:17:00 +02:00
Enegnei
a423c81836
More grammar, spelling, syntax changes
2019-09-12 23:06:25 +02:00
Andreas M. Antonopoulos
441edddc09
thumbnail_final_final_v3_final_dammit
2019-09-12 11:51:08 -06:00