Skip to content

Commit

Permalink
Merge pull request #116 from DIG-Network/release/v0.0.1-alpha.122
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.122
  • Loading branch information
MichaelTaylor3D authored Oct 6, 2024
2 parents e490243 + f4919ea commit ba102fe
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.1-alpha.122](https://github.com/DIG-Network/dig-propagation-server/compare/v0.0.1-alpha.121...v0.0.1-alpha.122) (2024-10-06)


### Features

* support hostnames in server coins ([1700cde](https://github.com/DIG-Network/dig-propagation-server/commit/1700cde62deb4268f45ca537bbf19f62976059f1))

### [0.0.1-alpha.121](https://github.com/DIG-Network/dig-propagation-server/compare/v0.0.1-alpha.120...v0.0.1-alpha.121) (2024-10-06)


### Features

* support hostnames in server coins ([92583f3](https://github.com/DIG-Network/dig-propagation-server/commit/92583f3054e03d5991a11a2c2dacec5166945d50))

### [0.0.1-alpha.120](https://github.com/DIG-Network/dig-propagation-server/compare/v0.0.1-alpha.119...v0.0.1-alpha.120) (2024-10-06)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dig-propagation-server",
"version": "0.0.1-alpha.120",
"version": "0.0.1-alpha.122",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/storeController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const subscribeToStore = async (

const nconfManager = new NconfManager("config.json");
const publicIp: string | null | undefined =
await nconfManager.getConfigValue("publicIp");
await nconfManager.getConfigValue("publicHost");

if (publicIp) {
const serverCoin = new ServerCoin(storeId);
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/sync_stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const STORE_PATH = path.join(getStorageLocation(), "stores");

const mutex = new Mutex();

const PUBLIC_IP_KEY = "publicIp";
const PUBLIC_IP_KEY = "publicHost";
const nconfManager = new NconfManager("config.json");

// Map to track which peerIps have been checked for each rootHash
Expand Down

0 comments on commit ba102fe

Please sign in to comment.