fix: eslint problems
This commit is contained in:
parent
62e5ff070f
commit
c002a09d7e
2 changed files with 3 additions and 3 deletions
|
@ -105,7 +105,7 @@ async function deleteBlockedClaims () {
|
|||
}
|
||||
|
||||
async function deleteFromElastic (claimid) {
|
||||
return new Promise(async(resolve, reject) => {
|
||||
return new Promise(async (resolve, reject) => {
|
||||
queue.push({
|
||||
index: 'claims',
|
||||
type : 'claim',
|
||||
|
@ -116,7 +116,7 @@ async function deleteFromElastic (claimid) {
|
|||
}
|
||||
|
||||
async function pushElastic (claim) {
|
||||
return new Promise(async(resolve, reject) => {
|
||||
return new Promise(async (resolve, reject) => {
|
||||
queue.push({
|
||||
index: 'claims',
|
||||
type : 'claim',
|
||||
|
|
|
@ -197,7 +197,7 @@ export function getValue (tx, i) {
|
|||
}
|
||||
|
||||
async function pushElastic (claim) {
|
||||
return new Promise(async(resolve, reject) => {
|
||||
return new Promise(async (resolve, reject) => {
|
||||
queue.push({
|
||||
index: 'claims',
|
||||
type : 'claim',
|
||||
|
|
Loading…
Reference in a new issue