mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 01:25:10 +00:00
Fix lint errors
Signed-off-by: James Taylor <jamest@uk.ibm.com>
This commit is contained in:
parent
e6738818e5
commit
f1a9fea77d
2 changed files with 1 additions and 2 deletions
|
|
@ -291,7 +291,6 @@ describe('Fabric', () => {
|
||||||
const index = await redis.zrange('index:txn:timestamp', 0, -1);
|
const index = await redis.zrange('index:txn:timestamp', 0, -1);
|
||||||
expect(index).toStrictEqual([]);
|
expect(index).toStrictEqual([]);
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('evatuateTransaction', () => {
|
describe('evatuateTransaction', () => {
|
||||||
|
|
|
||||||
|
|
@ -145,7 +145,7 @@ export const startRetryLoop = (
|
||||||
if (contract) {
|
if (contract) {
|
||||||
await retryTransaction(contract, redis, savedTransaction);
|
await retryTransaction(contract, redis, savedTransaction);
|
||||||
} else {
|
} else {
|
||||||
clearTransactionDetails(redis,savedTransaction.transactionId)
|
clearTransactionDetails(redis, savedTransaction.transactionId);
|
||||||
logger.error(
|
logger.error(
|
||||||
'No contract found for %s to retry transaction %s',
|
'No contract found for %s to retry transaction %s',
|
||||||
savedTransaction.mspId,
|
savedTransaction.mspId,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue