Skip to content

Commit

Permalink
Merge pull request #179 from whitefen/master
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
kwunyeung authored Aug 24, 2019
2 parents a5b4b25 + f7666b4 commit b5caf7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ updateMissedBlocks = () => {
getDelegations = () => {
Meteor.call('delegations.getDelegations', (error, result) => {
if (error){
console.log("get delegation error: "+ error)
console.log("get delegations error: "+ error)
}
else{
console.log("get delegtaions ok: "+ result)
console.log("get delegations ok: "+ result)
}
});
}
Expand All @@ -118,7 +118,7 @@ aggregateMinutely = () =>{

Meteor.call('coinStats.getCoinStats', (error, result) => {
if (error){
console.log("get coin stats: "+error);
console.log("get coin stats error: "+error);
}
else{
console.log("get coin stats ok: "+result)
Expand Down

0 comments on commit b5caf7a

Please sign in to comment.