mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 17:45:10 +00:00
[FAB-6292] Fix spelling error
[FAB_6292] fix spelling error in high-throughput. Change-Id: I6f0d3a8ccdbd3b5b0762e3f346292340862354ac Signed-off-by: Zhangjiong Xuan <xuanzhangjiong@hyperchain.cn>
This commit is contained in:
parent
56af764006
commit
c9b0c62975
2 changed files with 17 additions and 17 deletions
|
|
@ -22,8 +22,8 @@ package main
|
||||||
* 2 specific Hyperledger Fabric specific libraries for Smart Contracts
|
* 2 specific Hyperledger Fabric specific libraries for Smart Contracts
|
||||||
*/
|
*/
|
||||||
import (
|
import (
|
||||||
"strconv"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strconv"
|
||||||
|
|
||||||
"github.com/hyperledger/fabric/core/chaincode/shim"
|
"github.com/hyperledger/fabric/core/chaincode/shim"
|
||||||
sc "github.com/hyperledger/fabric/protos/peer"
|
sc "github.com/hyperledger/fabric/protos/peer"
|
||||||
|
|
@ -76,7 +76,7 @@ func (s *SmartContract) Invoke(APIstub shim.ChaincodeStubInterface) sc.Response
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates the ledger to include a new delta for a particluar variable. If this is the first time
|
* Updates the ledger to include a new delta for a particular variable. If this is the first time
|
||||||
* this variable is being added to the ledger, then its initial value is assumed to be 0. The arguments
|
* this variable is being added to the ledger, then its initial value is assumed to be 0. The arguments
|
||||||
* to give in the args array are as follows:
|
* to give in the args array are as follows:
|
||||||
* - args[0] -> name of the variable
|
* - args[0] -> name of the variable
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue