Skip to content

Commit

Permalink
[WEL-000] change neutron chain id to real chain id
Browse files Browse the repository at this point in the history
- fix api url
  • Loading branch information
kairoski03 committed Dec 15, 2023
1 parent 313356b commit 851a05a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/neutron/Instantiate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,12 @@ export const Instantiate: React.FunctionComponent<InterfaceProps> = ({
};
try {
const res = await axios.post(
NEUTRON_COMPILER_CONSUMER_API_ENDPOINT + '/neutron-deploy-histories',
NEUTRON_COMPILER_CONSUMER_API_ENDPOINT + '/deploy-histories',
neutronDeployHistoryCreateDto,
);
log.info(`neutron-deploy-histories api res`, res);
log.info(`deploy-histories api res`, res);
} catch (e) {
log.error(`neutron-deploy-histories api error`);
log.error(`deploy-histories api error`);
}
}

Expand Down Expand Up @@ -336,12 +336,12 @@ export const Instantiate: React.FunctionComponent<InterfaceProps> = ({
};
try {
const res = await axios.post(
NEUTRON_COMPILER_CONSUMER_API_ENDPOINT + '/neutron-deploy-histories',
NEUTRON_COMPILER_CONSUMER_API_ENDPOINT + '/deploy-histories',
neutronDeployHistoryCreateDto,
);
log.info(`neutron-deploy-histories api res`, res);
log.info(`deploy-histories api res`, res);
} catch (e) {
log.error(`neutron-deploy-histories api error`);
log.error(`deploy-histories api error`);
}
}

Expand Down

0 comments on commit 851a05a

Please sign in to comment.