-
Notifications
You must be signed in to change notification settings - Fork 105
[Bug]: testnet faucet is broken #504
Copy link
Copy link
Closed
Milestone
Description
Requesting tokens from the testnet faucet no longer works.
This is due to the faucet code not persisting state, which caused the faucet to reset to initial state when the instance was restarted for maintenance. This causes the faucet's transactions to be rejected by the node which in turn means no tokens can be minted.
The best (imo) solution is for the faucet to sync its state on startup. This is possible because the faucet account is public. The convenient way to do this is blocked by #485. Until that is implemented our options are:
- Sync from genesis on startup
- Manually inject the state
- Restart the entire testnet network (and wait for [Task]: endpoint for account state retrieval (FPI) #485)
Reactions are currently unavailable