Skip to content

Commit

Permalink
added log to identify error in the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniSomoza committed Dec 11, 2024
1 parent 54c71df commit 342814a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ function generateOnChainIdentifier({
tool,
toolVersion
}: OnChainIdentifierParamsType): string {
console.log('@@@ toolVersion: ', toolVersion)

const identifierPrefix = '5afe'
const identifierVersion = '00' // first version
const projectHash = generateHash(project, 20) // Take the last 20 bytes
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol-kit/tests/e2e/onChainIdentifier.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('On-chain analytics', () => {
})
})

describe('getOnchainIdentifier method', () => {
describe.only('getOnchainIdentifier method', () => {
it('should return the on-chain identifier when provided', async () => {
const onchainAnalytics: OnchainAnalyticsProps = {
project: 'Test e2e Project',
Expand Down

0 comments on commit 342814a

Please sign in to comment.