Skip to content

Commit

Permalink
Update getParentBaseFeeEstimate unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstph-dvx committed Jul 2, 2024
1 parent f76be2e commit 9ecff00
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ exports[`Getters > [getMinimumGasPrice] Should return minimum gas price 1`] = `1

exports[`Getters > [getNetworkFeeAccount] Should return network fee account 1`] = `"0x32e7AF5A8151934F3787d0cD59EB6EDd0a736b1d"`;

exports[`Getters > [getParentBaseFeeEstimate] Should return parent base fee estimate 1`] = `106354669n`;

exports[`Getters > [getParentRewardRate] Should return parent reward rate 1`] = `0n`;

exports[`Getters > [getParentRewardRecipient] Should return parent reward recipient 1`] = `"0x2E041280627800801E90E9Ac83532fadb6cAd99A"`;
Expand Down
2 changes: 1 addition & 1 deletion src/decorators/publicActionsChildChain.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('Getters', () => {

it('[getParentBaseFeeEstimate] Should return parent base fee estimate', async () => {
const parentBaseFeeEstimate = await client.getParentBaseFeeEstimate();
expect(parentBaseFeeEstimate).toMatchSnapshot();
expect(parentBaseFeeEstimate).toBeGreaterThan(0n);
});

it('[getParentRewardRate] Should return parent reward rate', async () => {
Expand Down

0 comments on commit 9ecff00

Please sign in to comment.