fix(tests): Fixing broken integration test

This commit is contained in:
Chris Troutner
2022-03-10 16:38:41 -08:00
parent 34b9cefb65
commit 56bc942e87
2 changed files with 12 additions and 20 deletions
+3 -3
View File
@@ -138,7 +138,7 @@ class PsfSlpIndexer {
if (typeof address === 'string') {
const response = await axios.post(
`${this.restURL}psf/slp/address`,
{ address},
{ address },
this.axiosOptions
)
return response.data
@@ -202,7 +202,7 @@ class PsfSlpIndexer {
if (typeof tokenId === 'string') {
const response = await axios.post(
`${this.restURL}psf/slp/token`,
{ tokenId, withTxHistory},
{ tokenId, withTxHistory },
this.axiosOptions
)
return response.data
@@ -292,7 +292,7 @@ class PsfSlpIndexer {
if (typeof txid === 'string') {
const response = await axios.post(
`${this.restURL}psf/slp/txid`,
{ txid},
{ txid },
this.axiosOptions
)
return response.data