This commit is contained in:
aozhiwei 2023-07-03 22:00:34 +08:00
parent b810a21eca
commit 9b273be991
2 changed files with 2 additions and 2 deletions

View File

@ -61,4 +61,4 @@ class BlockChain extends BaseService {
}
module.exports = new BlockChain();
module.exports = BlockChain;

View File

@ -214,7 +214,7 @@ class PullBcEvent extends BaseService {
}
getInstanceName() {
const instName = this.getNetId() + '.' + this.getContractByName() + '.' + this.getEventName();
const instName = this.getNetId() + '.' + this.getContractName() + '.' + this.getEventName();
return instName;
}