Skip to content

Commit

Permalink
typo interrupt
Browse files Browse the repository at this point in the history
  • Loading branch information
zelig committed Apr 16, 2014
1 parent 32b09d6 commit 59a7b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethereum/ethereum.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
const Debug = true

// Register interrupt handlers so we can stop the ethereum
func RegisterInterupts(s *eth.Ethereum) {
func RegisterInterrupts(s *eth.Ethereum) {
// Buffered chan of one is enough
c := make(chan os.Signal, 1)
// Notify about interrupts for now
Expand Down Expand Up @@ -130,7 +130,7 @@ func main() {
go console.Start()
}

RegisterInterupts(ethereum)
RegisterInterrupts(ethereum)
ethereum.Start()

if StartMining {
Expand Down

0 comments on commit 59a7b13

Please sign in to comment.