Broadcast transaction form

fixes #878
This commit is contained in:
softsimon
2021-10-19 15:37:45 +04:00
parent c257fbfdcb
commit 4046c3176f
10 changed files with 104 additions and 4 deletions

View File

@@ -69,7 +69,8 @@ class Server {
next();
})
.use(express.urlencoded({ extended: true }))
.use(express.json());
.use(express.text())
;
this.server = http.createServer(this.app);
this.wss = new WebSocket.Server({ server: this.server });