mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +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);
|
||||
expect(index).toStrictEqual([]);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
describe('evatuateTransaction', () => {
|
||||
|
|
|
|||
|
|
@ -145,7 +145,7 @@ export const startRetryLoop = (
|
|||
if (contract) {
|
||||
await retryTransaction(contract, redis, savedTransaction);
|
||||
} else {
|
||||
clearTransactionDetails(redis,savedTransaction.transactionId)
|
||||
clearTransactionDetails(redis, savedTransaction.transactionId);
|
||||
logger.error(
|
||||
'No contract found for %s to retry transaction %s',
|
||||
savedTransaction.mspId,
|
||||
|
|
|
|||
Loading…
Reference in a new issue