Skip to content
This repository has been archived by the owner on Sep 27, 2019. It is now read-only.

Commit

Permalink
Follow standards for throw statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Klingler committed May 13, 2018
1 parent a2060bb commit acdf499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drizzleStatus/drizzleStatusSaga.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function* initializeDrizzle(action) {
var web3 = yield call(initializeWeb3, {options: web3Options})

if (!web3) {
throw("Web3 could not be initialized")
throw 'Web3 could not be initialized.'
}

action.drizzle.web3 = web3
Expand Down

0 comments on commit acdf499

Please sign in to comment.