Merge pull request #27 from Permissionless-Software-Foundation/ct-unstable

fix(full node): Debugging config settings
This commit is contained in:
Chris Troutner
2026-05-15 13:33:16 -07:00
committed by GitHub
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -39,6 +39,7 @@ class FullNodeRPCAdapter {
async call (method, params = [], requestId) {
const id = requestId || `${this.requestIdPrefix}-${method}`
console.log('full-node-rpc.js/call(): this.http.defaults.baseURL: ', this.http.defaults.baseURL)
try {
const response = await this.http.post('', {
+3
View File
@@ -26,6 +26,9 @@ describe('#full-node-rpc.js', () => {
beforeEach(() => {
sandbox = sinon.createSandbox()
mockAxiosInstance = {
defaults: {
baseURL: baseConfig.fullNode.rpcBaseUrl
},
post: sandbox.stub()
}
axiosCreateStub = sandbox.stub(axios, 'create').returns(mockAxiosInstance)