Skip to content

Commit

Permalink
Merge pull request #56 from vechain/pedro/remove_backtrace_test
Browse files Browse the repository at this point in the history
Remove backtrace test
  • Loading branch information
otherview authored Sep 11, 2024
2 parents 209f6ea + 10bddd3 commit 605d8eb
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion network/config/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ thor \
--config-dir=/tmp \
--network /node/config/genesis.json \
--api-addr="0.0.0.0:8669" \
--api-backtrace-limit=5 \
--api-cors="*" \
--api-allowed-tracers="all" \
--verbosity=9 \
Expand Down
1 change: 0 additions & 1 deletion network/docker-compose-solo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ services:
- --genesis=/node/config/genesis.json
- --on-demand # create new block when there is pending transaction
- --api-addr=0.0.0.0:8669 # Enable remote connections
- --api-backtrace-limit=5 # limit the number of blocks to trace back
- --api-cors=* # comma separated list of domains to accept cross-origin requests to API
- --txpool-limit-per-account=256 # limit txpool size per account
- --cache=1024 # megabytes of ram allocated to trie nodes cache
Expand Down
11 changes: 0 additions & 11 deletions test/thorest-api/subscriptions/ws-transfers.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,17 +202,6 @@ describe('WS /subscriptions/transfer', () => {
)
})

it.e2eTest('should error for out of range position', 'all', async () => {
const account = generateAddress()
const genesisBlock = await Client.sdk.blocks.getGenesisBlock()
const genesisBlockId = genesisBlock?.id

await subscribeAndTestError(
{ recipient: account, pos: genesisBlockId },
'Unexpected server response: 403',
)
})

it.e2eTest('should error for invalid recipient', 'all', async () => {
await subscribeAndTestError(
{ recipient: 'invalid recipient' },
Expand Down

0 comments on commit 605d8eb

Please sign in to comment.