rebase to npm-packages, add README and LICENSE

This commit is contained in:
nitowa
2022-02-01 17:09:54 +01:00
parent 7794553575
commit b4169b1bbd
5 changed files with 97 additions and 3552 deletions
+2 -2
View File
@@ -46,7 +46,7 @@ const sendReliably = (api: RippleAPI, signed: any, preparedPayment,): Promise<an
status = {
finalResult: 'Transaction was not, and never will be, included in a validated ledger'
}
rej(status);
return rej(status);
} else {
// Check again later:
@@ -54,7 +54,7 @@ const sendReliably = (api: RippleAPI, signed: any, preparedPayment,): Promise<an
return
}
}
res(status)
return res(status)
}
api.connection.once('ledgerClosed', ledgerClosedCallback)
})