Skip to content

Commit

Permalink
chore: maintain node logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalovelo committed Sep 30, 2022
1 parent dfeb4c7 commit c7e4e3a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules/
.env.production
Makefile
docker/data
docker/logs
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ services:
volumes:
- ./docker/aeternity_node_mean16.yaml:/home/aeternity/node/aeternity.yaml
- ./docker/accounts_test.json:/home/aeternity/node/data/aecore/.genesis/accounts_test.json
- ./docker/logs:/home/aeternity/node/log
networks:
- game_network

Expand All @@ -23,4 +24,4 @@ services:
- node
networks:
game_network:
driver: bridge
driver: bridge
2 changes: 1 addition & 1 deletion server/src/services/sdk/sdk.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export async function fundAccount(account: Encoded.AccountAddress) {
*/
export async function pollForAccount(
address: Encoded.AccountAddress,
maxTries = 10,
maxTries = 50,
): Promise<boolean> {
try {
return !!(await sdk.api.getAccountByPubkey(address));
Expand Down

0 comments on commit c7e4e3a

Please sign in to comment.