Skip to content

Commit bce83ef

Browse files
committed
issue 1376
1 parent 5d139fa commit bce83ef

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

full-stack-asset-transfer-guide/contracts/asset-transfer-go/contract.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ func clientCommonName(ctx contractapi.TransactionContextInterface) (string, erro
281281
return matches[1], nil
282282
}
283283

284-
func ownerIdentifier(user string, org string) ownerIdentifier {
284+
func newOwnerIdentifier(user string, org string) ownerIdentifier {
285285
return ownerIdentifier{Org: org, User: user}
286286
}
287287

full-stack-asset-transfer-guide/contracts/asset-transfer-typescript/tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
22
"$schema": "https://json.schemastore.org/tsconfig",
3-
"extends": "@tsconfig/node20/tsconfig.json",
43
"compilerOptions": {
4+
"target": "ES2023",
5+
"module": "Node16",
6+
"moduleResolution": "Node16",
7+
"lib": ["ES2023"],
58
"experimentalDecorators": true,
69
"emitDecoratorMetadata": true,
710
"declaration": true,
811
"declarationMap": true,
912
"sourceMap": true,
1013
"outDir": "dist",
14+
"rootDir": "src",
1115
"strict": true,
1216
"noUnusedLocals": true,
1317
"noImplicitReturns": true,

0 commit comments

Comments
 (0)