Skip to content

Commit

Permalink
fixup! refactor: remove transformTransactionData code repetition
Browse files Browse the repository at this point in the history
  • Loading branch information
iccicci committed Nov 22, 2024
1 parent d7634e9 commit a32cc79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/e2e/fixtures/mainnet/get-server-info.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default [
name: 'Cardano',
shortcut: 'ada',
testnet: false,
version: '2.2.1',
version: expect.any(String),
decimals: 6,
blockHeight: expect.any(Number),
blockHash: expect.stringMatching(/^[a-f0-9]{64}$/),
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/fixtures/preprod/get-server-info.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default [
name: 'Cardano',
shortcut: 'tada',
testnet: true,
version: '2.3.1',
version: expect.any(String),
decimals: 6,
blockHeight: expect.any(Number),
blockHash: expect.stringMatching(/^[a-f0-9]{64}$/),
Expand Down

0 comments on commit a32cc79

Please sign in to comment.