Skip to content

Commit 0439718

Browse files
yuki-konmastersingh24
authored andcommitted
[FAB-12215]WYFA:Remove chainId in tx proposal request
A sample application in Write Your First Application has an unnecessary parameter “chainId” in a transaction proposal request. Since a channel name is included in a channel object, it is not required in a request. This CR removes the parameter ”chainId” from the document. FAB-12215 #done Change-Id: I99525f4b207002b8c58eba9df62a8f1c9fd1e5b0 Signed-off-by: Yuki Kondo <yuki.kondo@hal.hitachi.com>
1 parent 2ec4c9a commit 0439718

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

docs/source/write_first_app.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,6 @@ code block where we construct our invocation:
390390
chaincodeId: 'fabcar',
391391
fcn: '',
392392
args: [''],
393-
chainId: 'mychannel',
394393
txId: tx_id
395394
};
396395
@@ -406,7 +405,6 @@ as the identifying key here. Edit this code block to look like this:
406405
chaincodeId: 'fabcar',
407406
fcn: 'createCar',
408407
args: ['CAR10', 'Chevy', 'Volt', 'Red', 'Nick'],
409-
chainId: 'mychannel',
410408
txId: tx_id
411409
};
412410
@@ -475,7 +473,6 @@ to ``changeCarOwner`` and input the arguments like this:
475473
chaincodeId: 'fabcar',
476474
fcn: 'changeCarOwner',
477475
args: ['CAR10', 'Dave'],
478-
chainId: 'mychannel',
479476
txId: tx_id
480477
};
481478

0 commit comments

Comments
 (0)