Merge pull request #4 from Permissionless-Software-Foundation/ct-unstable

fix(webhook): Reconfiguring default P2WDB webhook
This commit is contained in:
Chris Troutner
2021-07-30 10:53:31 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ async function startServer () {
// Create webhook
try {
await webHookLib.createWebHook('http://157.90.28.11:5667/entry')
await webHookLib.createWebHook('http://localhost:5002/entry')
console.log('Webhook created')
} catch (error) {
console.log('Webhook cant be created')
+1 -1
View File
@@ -46,5 +46,5 @@ module.exports = {
// P2WDB webhook endpoint
webhookService: process.env.WEBHOOKSERVICE
? process.env.WEBHOOKSERVICE
: 'http://localhost:5001/webhook'
: 'http://localhost:5001/webhook' // P2WDB.
}