File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
examples/chaincode/go/enccc_example Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ the chaincode decrypts the message and puts it in the proposal response. An
55
55
invocation would persist the result in the ledger for all channel readers to
56
56
see whereas a query can be discarded and so the result remains confidential.
57
57
58
- To test signing and verifying, you also need to generate an ECDSA key for the appopriate
58
+ To test signing and verifying, you also need to generate an ECDSA key for the appropriate
59
59
curve, as follows.
60
60
61
61
```
Original file line number Diff line number Diff line change @@ -136,14 +136,14 @@ func TestBatchTimer(t *testing.T) {
136
136
select {
137
137
case <- support .Blocks :
138
138
case <- time .After (time .Second ):
139
- t .Fatalf ("Did not create the second batch, indicating that the timer was not appopriately reset" )
139
+ t .Fatalf ("Did not create the second batch, indicating that the timer was not appropriately reset" )
140
140
}
141
141
142
142
support .SharedConfigVal .BatchTimeoutVal , _ = time .ParseDuration ("10s" )
143
143
syncQueueMessage (testMessage , bs , support .BlockCutterVal )
144
144
select {
145
145
case <- support .Blocks :
146
- t .Fatalf ("Created another batch, indicating that the timer was not appopriately re-read" )
146
+ t .Fatalf ("Created another batch, indicating that the timer was not appropriately re-read" )
147
147
case <- time .After (100 * time .Millisecond ):
148
148
}
149
149
You can’t perform that action at this time.
0 commit comments