This commit is contained in:
aozhiwei 2023-07-11 19:00:55 +08:00
parent 92612809b1
commit 107d65fde0
2 changed files with 2 additions and 0 deletions

View File

@ -227,6 +227,7 @@ class DbEventProcess extends BaseService {
const handle = eventsFactory.createEventHandle(this, this.conn, row); const handle = eventsFactory.createEventHandle(this, this.conn, row);
try { try {
await handle.start(); await handle.start();
break;
} finally { } finally {
await handle.safeRelease(); await handle.safeRelease();
} }

View File

@ -91,6 +91,7 @@ class Activate721Nft extends BaseEventProcess {
], ],
fieldList fieldList
); );
console.log(fieldList);
if (err) { if (err) {
this.throwError('mintNft transId:' + transId); this.throwError('mintNft transId:' + transId);
} }