Skip to content

Commit

Permalink
Fix gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
MizukiSonoko committed Sep 23, 2016
1 parent 4266d64 commit ffbb51e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
config/*.py
config/__pycahe__
**/__pycache__/*
__pycache__/*
build/*
*cmake
*.DS_Store
*.vscode/
*.swp
*.class
*.gch
*.gch

5 changes: 3 additions & 2 deletions peer/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include "../core/server/http_server.hpp"
#include "../core/peer/connection.hpp"
#include "../core/consensus/sumeragi.hpp"

#include "../core/util/yaml_loader.hpp"
#include "../core/util/logger.hpp"
Expand Down Expand Up @@ -45,8 +46,8 @@ int main() {
std::thread http_th( server );

// std::cout << "(Second) Process ID is " << getpid() << std::endl;
// Sumeragi::initializeSumeragi(11, 2, 2);
//Sumeragi::loop();
sumeragi::initializeSumeragi(11, 2, 2);
sumeragi::loop();

while(running){}

Expand Down

0 comments on commit ffbb51e

Please sign in to comment.