Skip to content

Commit

Permalink
fix: add console log
Browse files Browse the repository at this point in the history
  • Loading branch information
Argeare5 committed Nov 3, 2023
1 parent 6ab9e40 commit d0ddce0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/web3/adapters/GnosisAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export class GnosisAdapter<T extends BaseTx> implements AdapterInterface<T> {
);
if (response.ok) {
const gnosisStatus = (await response.json()) as GnosisTxStatusResponse;
console.log('gnosisStatus', gnosisStatus);
const isPending = !gnosisStatus.isExecuted;

// check if more than a day passed and tx wasn't executed still, remove the transaction from the pool
Expand Down

0 comments on commit d0ddce0

Please sign in to comment.