Skip to content

Commit 899fc3d

Browse files
committed
fixed some links 404 error
Signed-off-by: Fedor Partanskiy <[email protected]>
1 parent c6e65c6 commit 899fc3d

File tree

5 files changed

+6
-29
lines changed

5 files changed

+6
-29
lines changed

docs/source/deploy_chaincode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ async CreateAsset(ctx, id, color, size, owner, appraisedValue) {
229229
}
230230
```
231231

232-
You can learn more about the JavaScript contract API by visiting the [API documentation](https://hyperledger.github.io/fabric-chaincode-node/{BRANCH}/api/) and the [smart contract processing topic](developapps/smartcontract.html).
232+
You can learn more about the JavaScript contract API by visiting the [API documentation](https://hyperledger.github.io/fabric-chaincode-node/{BRANCH}/api/).
233233

234234
To install the smart contract dependencies, run the following command from the `asset-transfer-basic/chaincode-javascript` directory.
235235

docs/source/international_languages.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,6 @@ order of translation in your workgroup.
217217
Fabric.
218218

219219

220-
* [Developing applications](https://hyperledger-fabric.readthedocs.io/en/{BRANCH_DOC}/developapps/developing_applications.html)
221-
222-
This topic helps developers write smart contracts and applications; these
223-
are the core elements of any solution that uses Fabric.
224-
225-
226220
* [Tutorials](https://hyperledger-fabric.readthedocs.io/en/{BRANCH_DOC}/tutorials.html)
227221

228222
A set of hands-on tutorials to help developers and administrators try out

docs/source/ledger/ledger.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,7 @@ notified when the transaction has been included in the blockchain (whether valid
129129
or invalid). The key design point is that only transactions that are **signed**
130130
by the required set of **endorsing organizations** will result in an update to
131131
the world state. If a transaction is not signed by sufficient endorsers, it will
132-
not result in a change of world state. You can read more about how applications
133-
use [smart contracts](../smartcontract/smartcontract.html), and how to [develop
134-
applications](../developapps/developing_applications.html).
132+
not result in a change of world state.
135133

136134
You'll also notice that a state has a version number, and in the diagram above,
137135
states CAR1 and CAR2 are at their starting versions, 0. The version number is for
@@ -374,8 +372,7 @@ chaincodes. World states are in a namespace so that only smart contracts within
374372
the same chaincode can access a given namespace.
375373

376374
A blockchain is not namespaced. It contains transactions from many different
377-
smart contract namespaces. You can read more about chaincode namespaces in this
378-
[topic](../developapps/chaincodenamespace.html).
375+
smart contract namespaces.
379376

380377
Let's now look at how the concept of a namespace is applied within a Hyperledger
381378
Fabric channel.
@@ -388,9 +385,6 @@ separate world states, including namespaces. It is possible for applications and
388385
smart contracts to communicate between channels so that ledger information can
389386
be accessed between them.
390387

391-
You can read more about how ledgers work with channels in this
392-
[topic](../developapps/chaincodenamespace.html#channels).
393-
394388

395389
## More information
396390

docs/source/network/network.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ We can see that our peer organizations, R1 and R2, are fully participating in th
9494

9595
Note: Fabric v2.3 SDKs embed the logic of the v2.4 Fabric Gateway service in the client application --- refer to the [v2.3 Applications and Peers](https://hyperledger-fabric.readthedocs.io/en/release-2.3/peers/peers.html#applications-and-peers) topic for details.
9696

97-
For more information about how to develop an application, check out [Developing applications](../developapps/developing_applications.html).
98-
9997
## Joining components to multiple channels
10098

10199
Now that we have shown the process for how a channel is created, as well as the nature of the high level interactions between organizations, nodes, policies, chaincodes, and applications, let's expand our view by adding a new organization and a new channel to our scenario. To show how Fabric components can be joined to multiple channels, we'll join R2 and its peer, P2, to the new channel, while R1 and P1 will not be joined.

docs/source/smartcontract/smartcontract.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,7 @@ might govern financial prices or delivery conditions, and express it as
139139
a smart contract in a programming language such as JavaScript, Go, or Java.
140140
The legal and technical skills required to convert centuries of legal language
141141
into programming language is increasingly practiced by **smart contract
142-
auditors**. You can learn about how to design and develop a smart contract in
143-
the [Developing applications
144-
topic](../developapps/developing_applications.html).
142+
auditors**.
145143

146144

147145
## Endorsement
@@ -227,10 +225,6 @@ updated to `ORG2`. However, `t4` (not shown) is an invalid transaction, so while
227225
it was recorded in the ledger, the world state was not updated, and `CAR2`
228226
remains owned by `ORG2`.
229227

230-
Finally, to understand how to use a smart contract or chaincode with world
231-
state, read the [chaincode namespace
232-
topic](../developapps/chaincodenamespace.html).
233-
234228
## Channels
235229

236230
Hyperledger Fabric allows an organization to simultaneously participate in
@@ -286,8 +280,7 @@ channel and across different channels. It this way, they can read and write
286280
world state data to which they would not otherwise have access due to smart
287281
contract namespaces.
288282

289-
There are limitations to this inter-contract communication, which are described
290-
fully in the [chaincode namespace](../developapps/chaincodenamespace.html#cross-chaincode-access) topic.
283+
There are limitations to this inter-contract communication.
291284

292285
## System chaincode
293286

@@ -311,9 +304,7 @@ abbreviations:
311304
[topic](../configtx.html#configuration-updates).
312305

313306
* **Query system chaincode (QSCC)** runs in all peers to provide ledger APIs which
314-
include block query, transaction query etc. You can read more about these
315-
ledger APIs in the transaction context
316-
[topic](../developapps/transactioncontext.html).
307+
include block query, transaction query etc.
317308

318309
* **Endorsement system chaincode (ESCC)** runs in endorsing peers to
319310
cryptographically sign a transaction response. You can read more about how

0 commit comments

Comments
 (0)