mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
Tested using the test network Adapted from marbles02 Signed-off-by: r2roC <arturo@IBM.com>
13 lines
No EOL
235 B
JavaScript
13 lines
No EOL
235 B
JavaScript
/*
|
|
* Copyright IBM Corp. All Rights Reserved.
|
|
*
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const CC = require('./lib/asset_transfer_ledger_chaincode.js');
|
|
|
|
module.exports.CC = CC;
|
|
module.exports.contracts = [ CC ]; |