Skip to content

Commit

Permalink
Typo in page footer and s/bitcoin/decred
Browse files Browse the repository at this point in the history
  • Loading branch information
jholdstock committed Jul 17, 2019
1 parent 3663922 commit 272147a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions faucet.go
Expand Up @@ -235,7 +235,7 @@ func (l *lightningFaucet) zombieChanSweeper() {
// Every hour we'll consume a new tick and perform a sweep to close out
// any zombies channels.
zombieTicker := time.NewTicker(time.Hour * 1)
for _ = range zombieTicker.C {
for range zombieTicker.C {
log.Info("Performing zombie channel sweep!")

// In order to ensure we close out the proper channels, we also
Expand Down Expand Up @@ -363,7 +363,7 @@ func (l *lightningFaucet) closeChannel(chanPoint *lnrpc.ChannelPoint,
// invalid channel submission, and finally a splash page upon successful
// creation of a channel.
type homePageContext struct {
// NumCoins is the number of coins in BTC that the faucet has available
// NumCoins is the number of coins in Decred that the faucet has available
// for channel creation.
NumCoins float64

Expand Down
2 changes: 1 addition & 1 deletion static/footer.html
Expand Up @@ -18,7 +18,7 @@
<div class="col-md-4 col-12 footer__credit-column h-100">
<div class="d-flex justify-content-center h-100">
<div class="align-self-center">
<p class="mb-0">Decred developers | 2019<br>The source sode is available on <a href="https://github.com/matheusd/lightning-faucet">GitHub</a>
<p class="mb-0">Decred developers | 2019<br>The source code is available on <a href="https://github.com/matheusd/lightning-faucet">GitHub</a>
</p>
</div>
</div>
Expand Down

0 comments on commit 272147a

Please sign in to comment.