Skip to content

Commit

Permalink
debug: depositMsg for /deposit/init/pod
Browse files Browse the repository at this point in the history
  • Loading branch information
DhananjayPurohit committed Jun 3, 2024
1 parent 1d39b20 commit 4a8e0a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clients/apps/react-app/src/main/deposit.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const initPod = async (depositMsg1) => {
if (torProxy) {
socksAgent = { httpAgent: new SocksProxyAgent(torProxy) }
}
console.log('depositMsg1 ->', depositMsg1)

const response = await axios.post(url, depositMsg1, socksAgent)

if (response.status != 200) {
Expand Down
2 changes: 1 addition & 1 deletion clients/libs/nodejs/deposit.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const init = async (clientConfig, db, wallet, token_id) => {
if (torProxy) {
socksAgent = { httpAgent: new SocksProxyAgent(torProxy) };
}

console.log('depositMsg1 ->', depositMsg1)
const response = await axios.post(url, depositMsg1, socksAgent);

if (response.status != 200) {
Expand Down

0 comments on commit 4a8e0a5

Please sign in to comment.