issue 1376

This commit is contained in:
vishal 2026-06-03 20:22:57 +05:30
parent 5d139faea4
commit bce83efc06
2 changed files with 6 additions and 2 deletions

View file

@ -281,7 +281,7 @@ func clientCommonName(ctx contractapi.TransactionContextInterface) (string, erro
return matches[1], nil
}
func ownerIdentifier(user string, org string) ownerIdentifier {
func newOwnerIdentifier(user string, org string) ownerIdentifier {
return ownerIdentifier{Org: org, User: user}
}

View file

@ -1,13 +1,17 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node20/tsconfig.json",
"compilerOptions": {
"target": "ES2023",
"module": "Node16",
"moduleResolution": "Node16",
"lib": ["ES2023"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"noUnusedLocals": true,
"noImplicitReturns": true,