mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
issue 1376
This commit is contained in:
parent
5d139faea4
commit
bce83efc06
2 changed files with 6 additions and 2 deletions
|
|
@ -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}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue