Slave/btc integration #4

Merged
nobswebdev merged 47 commits from slave/btc-integration into master 2026-09-07 11:11:10 +00:00
3 changed files with 5 additions and 5 deletions
Showing only changes of commit 7b62bc41ad - Show all commits
+2 -2
View File
@@ -107,8 +107,8 @@ BITCOIN_CONFIRMATION_TIERS='[{"upToTotalFiat":"30","minConfirmations":0},{"upToT
BITCOIN_MIN_INCOMING_ATOMIC=7 # 0.00000007 BTC (~half a USD cent at that moment) BITCOIN_MIN_INCOMING_ATOMIC=7 # 0.00000007 BTC (~half a USD cent at that moment)
ELECTRUM_VERSION=4.8.1 ELECTRUM_VERSION=4.8.1
ELECTRUM_NETWORK=testnet ELECTRUM_NETWORK=testnet4
ELECTRUM_SERVER=electrum.blockstream.info:60002:s ELECTRUM_SERVER=testnet4-electrumx.wakiyamap.dev:51002:s
ELECTRUM_DAEMON_HOST=electrum-daemon ELECTRUM_DAEMON_HOST=electrum-daemon
ELECTRUM_DAEMON_PORT=7777 ELECTRUM_DAEMON_PORT=7777
ELECTRUM_DAEMON_RPC_USER=electrum ELECTRUM_DAEMON_RPC_USER=electrum
@@ -32,7 +32,7 @@ describe('BitcoinWalletAdminService', () => {
configService = { configService = {
get: jest.fn().mockReturnValue({ get: jest.fn().mockReturnValue({
network: 'testnet' network: 'testnet4'
}) })
}; };
@@ -47,7 +47,7 @@ describe('BitcoinWalletAdminService', () => {
expect(status).toEqual( expect(status).toEqual(
expect.objectContaining({ expect.objectContaining({
network: 'testnet', network: 'testnet4',
rpcVersion: '4.8.1', rpcVersion: '4.8.1',
blockHeight: 900_000, blockHeight: 900_000,
serverHeight: 900_000, serverHeight: 900_000,
+1 -1
View File
@@ -1,4 +1,4 @@
export enum ElectrumNetwork { export enum ElectrumNetwork {
Mainnet = 'mainnet', Mainnet = 'mainnet',
Testnet = 'testnet' Testnet4 = 'testnet4'
} }