From 33b940a38f3e4b5e0333ac7ca84cfb6b559b8b02 Mon Sep 17 00:00:00 2001 From: Matthew B White Date: Tue, 5 May 2020 14:28:18 +0100 Subject: [PATCH] [FABCN-394] Update typescript interface file (#128) (#129) Updated both typescript definition files to match the case and the existance of the implementation function. Signed-off-by: Matthew B White --- apis/fabric-shim-api/types/index.d.ts | 2 +- libraries/fabric-shim/types/index.d.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apis/fabric-shim-api/types/index.d.ts b/apis/fabric-shim-api/types/index.d.ts index 5c076296..3727ac55 100644 --- a/apis/fabric-shim-api/types/index.d.ts +++ b/apis/fabric-shim-api/types/index.d.ts @@ -54,7 +54,7 @@ declare module 'fabric-shim-api' { getTxID(): string; getChannelID(): string; getCreator(): SerializedIdentity; - getMspID(): string; + getMSPID(): string; getTransient(): Map; getSignedProposal(): ChaincodeProposal.SignedProposal; diff --git a/libraries/fabric-shim/types/index.d.ts b/libraries/fabric-shim/types/index.d.ts index cbf3cacb..b11dee63 100644 --- a/libraries/fabric-shim/types/index.d.ts +++ b/libraries/fabric-shim/types/index.d.ts @@ -76,6 +76,7 @@ declare module 'fabric-shim' { getTxID(): string; getChannelID(): string; getCreator(): SerializedIdentity; + getMSPID(): string; getTransient(): Map; getSignedProposal(): ChaincodeProposal.SignedProposal;