Skip to content

Commit 026610e

Browse files
committed
chore: fix post-merge lint errors
1 parent 8709f61 commit 026610e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/api/controllers/db-controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ async function parseRosettaTxDetail(opts: {
651651
events,
652652
opts.unlockingEvents
653653
);
654-
const txMemo = parseTransactionMemo(opts.tx.token_transfer_memo);
654+
const txMemo = parseTransactionMemo(opts.tx.token_transfer_memo);
655655
const rosettaTx: RosettaTransaction = {
656656
transaction_identifier: { hash: opts.tx.tx_id },
657657
operations: operations,

src/datastore/connection.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,4 +201,3 @@ export function getPostgres({
201201
}
202202
return sql;
203203
}
204-

src/test-utils/test-builders.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,9 @@ function testSmartContractLogEvent(args?: TestSmartContractLogEventArgs): DbSmar
426426
event_type: DbEventTypeId.SmartContractLog,
427427
contract_identifier: args?.contract_identifier ?? CONTRACT_ID,
428428
topic: args?.topic ?? 'some-topic',
429-
value: args?.value ?? bufferToHexPrefixString(Buffer.from(serializeCV(bufferCVFromString('some val')))),
429+
value:
430+
args?.value ??
431+
bufferToHexPrefixString(Buffer.from(serializeCV(bufferCVFromString('some val')))),
430432
};
431433
}
432434

0 commit comments

Comments
 (0)