Skip to content

Commit

Permalink
Merge pull request #152 from hypersign-protocol/fix-schema
Browse files Browse the repository at this point in the history
fix-schema
  • Loading branch information
Pratap2018 authored Aug 20, 2024
2 parents 8ae54bf + 4fddadb commit 2c0c958
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/schema/services/schema.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,10 @@ export class SchemaService {
}
Logger.log('registerSchema() method: ends....', 'SchemaService');

return { transactionHash: registeredSchema?.transactionHash };
return {
transactionHash: registeredSchema?.transactionHash
? registeredSchema?.transactionHash
: '',
};
}
}

0 comments on commit 2c0c958

Please sign in to comment.