Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
})

const expectedErrMsg =
'tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999'
'tx rejected: gas price is less than block base fee'
expect(res.success).toBeFalsy()
expect(res.httpMessage.trimEnd()).toBe(expectedErrMsg)

Check failure on line 45 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction with not enough maxFeePerGas to cover for the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:45:47

Check failure on line 45 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction with not enough maxFeePerGas to cover for the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:45:47

Check failure on line 45 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction with not enough maxFeePerGas to cover for the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:45:47

Check failure on line 45 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction with not enough maxFeePerGas to cover for the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:45:47

Check failure on line 45 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction with not enough maxFeePerGas to cover for the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:45:47

Check failure on line 45 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction with not enough maxFeePerGas to cover for the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:45:47

Check failure on line 45 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction with not enough maxFeePerGas to cover for the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:45:47

Check failure on line 45 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction with not enough maxFeePerGas to cover for the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:45:47
},
)

Expand Down Expand Up @@ -100,9 +100,9 @@
})

const expectedErrMsg =
'tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999'
'tx rejected: gas price is less than block base fee'
expect(res.success).toBeFalsy()
expect(res.httpMessage.trimEnd()).toBe(expectedErrMsg)

Check failure on line 105 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction if maxFeePerGas is less than the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:105:47

Check failure on line 105 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction if maxFeePerGas is less than the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:105:47

Check failure on line 105 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction if maxFeePerGas is less than the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:105:47

Check failure on line 105 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction if maxFeePerGas is less than the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:105:47

Check failure on line 105 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction if maxFeePerGas is less than the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:105:47

Check failure on line 105 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction if maxFeePerGas is less than the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:105:47

Check failure on line 105 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction if maxFeePerGas is less than the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:105:47

Check failure on line 105 in test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js

View workflow job for this annotation

GitHub Actions / Run E2E Tests

test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js > POST /transactions > should reject a transaction if maxFeePerGas is less than the baseFee

AssertionError: expected 'tx rejected: gas price is less than b…' to be 'tx rejected: gas price is less than b…' // Object.is equality Expected: "tx rejected: gas price is less than block base fee" Received: "tx rejected: gas price is less than block base fee: expected 10000000000000 got 9999999999999" ❯ test/thorest-api/transactions/fork/galactica/post-tx-negative.test.js:105:47
},
)
})
Loading