parse_new_tx doesn't take a third argument

This commit is contained in:
Sosthene 2024-11-22 16:11:04 +01:00
parent f22dfa759b
commit 593b96884e

View File

@ -160,7 +160,7 @@ export default class Services {
async parseNewTx(tx: string) {
try {
const parsedTx = await this.sdkClient.parse_new_tx(tx, 0, 0.0001);
const parsedTx = await this.sdkClient.parse_new_tx(tx, 0);
if (parsedTx) {
console.log('🚀 ~ Services ~ parseNewTx ~ parsedTx:', parsedTx);
try {