From 90211b4fdac2a513d3c8403edd0c20624f2a9409 Mon Sep 17 00:00:00 2001 From: Danny Browning Date: Thu, 13 Apr 2023 12:03:56 -0600 Subject: [PATCH] stringify --- src/services/blockchain/ethereum/ethereum-blockchain-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/blockchain/ethereum/ethereum-blockchain-service.ts b/src/services/blockchain/ethereum/ethereum-blockchain-service.ts index 8d05e3dab..23f87e146 100644 --- a/src/services/blockchain/ethereum/ethereum-blockchain-service.ts +++ b/src/services/blockchain/ethereum/ethereum-blockchain-service.ts @@ -154,7 +154,7 @@ function make(config: Config): EthereumBlockchainService { provider = new ethers.JsonRpcProvider(hostPort) } } else if (network) { - logger.imp(`Connecting ethereum to default provider for network ${network.toJSON()}`) + logger.imp(`Connecting ethereum to default provider for network ${network.toJSON().stringify()}`) const opts = { etherscan: ethereum.account.privateKey, }