Skip to content

Commit c584588

Browse files
committed
even more logs
1 parent e76d35b commit c584588

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/controllers/v1/multisigAuthenticationController.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ export class MultisigAuthenticationController {
4848
throw new StandardError(errorMessagesEnum.MULTISIG_INVALID_REQUEST);
4949
}
5050

51+
logger.info('multisigSession:', { multisigSession, body });
52+
5153
if (!multisigSession && body.safeMessageTimestamp) {
5254
safeMessage = await fetchSafeMessageByTimestamp(
5355
body.safeAddress,

src/entities/multisigSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class MultisigSession extends BaseEntity {
3737
active: boolean;
3838

3939
// https://docs.safe.global/safe-smart-account/signatures/eip-1271#fetching-the-signature-asynchronously
40-
// A fully signed message will have the status CONFIRMED,
40+
// A fully signed message will have
4141
// confirmationsSubmitted >= confirmationsRequired
4242
// and a preparedSignature !== null.
4343
@Column({ nullable: true, default: MultisigStatuses.Pending })

0 commit comments

Comments
 (0)