1
0
Fork 0
forked from lthn/blockchain

Update server address in ApiServer configuration to use 127.0.0.1

This commit is contained in:
snider 2025-10-15 21:28:38 +01:00
parent a947670d2c
commit 4474eebe52

View file

@ -40,7 +40,7 @@ void ApiServer::run() {
.setContactUrl("https://lt.hn/")
.setLicenseName("EUPL-1.2")
.setLicenseUrl("https://joinup.ec.europa.eu/software/page/eupl/licence-eupl")
.addServer("http://localhost:8000", "server on localhost");
.addServer("http://127.0.0.1:8000", "server on localhost");
return builder.build(); }());