Skip to content

Commit

Permalink
Merge pull request #9 from kaiachain/feat/faucet
Browse files Browse the repository at this point in the history
updated method
  • Loading branch information
praveen-kaia authored Oct 30, 2024
2 parents f839c25 + 79ee2a1 commit 8600ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ app.get("/faucet/balance", async function (req, res) {
}
});

app.get("/faucet/run", async function (req, res) {
app.post("/faucet/run", async function (req, res) {
try {
let address = req.query.address || "";
if(!address) {
Expand Down

0 comments on commit 8600ffe

Please sign in to comment.