From bc7e31a67a6c84319f471437bc14779b9d65ca06 Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Wed, 14 Feb 2024 12:32:22 +0800 Subject: [PATCH 1/5] Frontend.Console: avoid always showing currency Recent progress-showing feature introduced in [1] was showing the currency ticker also when querying the balance of a single account (something which is used in other scenarios, not in the onboarding print of balances that you get at first when you launch the Frontend.Console). With this showProgress param we now only print it when it's useful. [1] b72bb8659a96cac3f465ac679a202467eb54fdab --- src/GWallet.Frontend.Console/UserInteraction.fs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/GWallet.Frontend.Console/UserInteraction.fs b/src/GWallet.Frontend.Console/UserInteraction.fs index b27d71332..82e300845 100644 --- a/src/GWallet.Frontend.Console/UserInteraction.fs +++ b/src/GWallet.Frontend.Console/UserInteraction.fs @@ -235,7 +235,7 @@ module UserInteraction = | _ -> DisplayAccountStatusInner accountNumber account maybeBalance maybeUsdValue - let private GetAccountBalanceInner (account: IAccount): Async*MaybeCached> = + let private GetAccountBalanceInner (account: IAccount) (showProgress: bool): Async*MaybeCached> = async { // The console frontend cannot really take much advantage of the Fast|Analysis distinction here (as // opposed to the other frontends) because it doesn't have automatic balance refresh (it's this @@ -252,21 +252,22 @@ module UserInteraction = // we don't need to query the fiat value at all (micro-optimization?) let! balance,usdValue = FSharpUtil.AsyncExtensions.MixedParallel2 balanceJob usdValueJob - let progressIteration = sprintf " %A" account.Currency - Console.Write progressIteration + if showProgress then + let progressIteration = sprintf " %A" account.Currency + Console.Write progressIteration return (account,balance,usdValue) } let private GetAccountBalance (account: IAccount): Async*MaybeCached> = async { - let! (_, balance, maybeUsdValue) = GetAccountBalanceInner account + let! (_, balance, maybeUsdValue) = GetAccountBalanceInner account false return (balance, maybeUsdValue) } let private GetAccountBalances (accounts: seq) : Async*MaybeCached>> = - let accountAndBalancesToBeQueried = accounts |> Seq.map GetAccountBalanceInner + let accountAndBalancesToBeQueried = accounts |> Seq.map (fun acc -> GetAccountBalanceInner acc true) Console.Write "Retrieving balances..." Async.Parallel accountAndBalancesToBeQueried From 5a96ab4319b159fa935d7a2951067e67d7e6d6fa Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Mon, 19 Feb 2024 17:26:17 +0800 Subject: [PATCH 2/5] Backend/Config: fix ETH-token readonly removal Removal of read-only accounts for ETH tokens was not working because the code to copy public-key files (at the time written probably so that people with only SAI accounts got DAI accounts automatically, due to the SAI->DAI migration) was recreating the files again. Now, we check if the directory was already there, in which case we don't copy the files (so that this token-creation code only happens when the folder for the token didn't exist yet). --- src/GWallet.Backend/Config.fs | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/src/GWallet.Backend/Config.fs b/src/GWallet.Backend/Config.fs index dedb295df..b6deee48c 100644 --- a/src/GWallet.Backend/Config.fs +++ b/src/GWallet.Backend/Config.fs @@ -81,7 +81,7 @@ module Config = configDir.Create() configDir - let private GetConfigDir (currency: Currency) (accountKind: AccountKind) = + let private GetConfigDirInternal (currency: Currency) (accountKind: AccountKind) (createIfNotAlreadyExisting: bool): Option = let accountConfigDir = GetConfigDirForAccounts().FullName let baseConfigDir = @@ -95,8 +95,18 @@ module Config = let configDir = Path.Combine(baseConfigDir, currency.ToString()) |> DirectoryInfo if not configDir.Exists then - configDir.Create() - configDir + if createIfNotAlreadyExisting then + configDir.Create() + Some configDir + else + None + else + Some configDir + + let private GetConfigDir (currency: Currency) (accountKind: AccountKind) = + match GetConfigDirInternal currency accountKind true with + | Some dir -> dir + | None -> failwith "Unreachable, after invoking with createIfNotAlreadyExisting=true, it should return Some" // In case a new token was added it will not have a config for an existing user // we copy the eth configs to the new tokens config directory @@ -105,11 +115,18 @@ module Config = let ethConfigDir = GetConfigDir Currency.ETH accountKind for token in Currency.GetAll() do if token.IsEthToken() then - let tokenConfigDir = GetConfigDir token accountKind - for ethAccountFilePath in Directory.GetFiles ethConfigDir.FullName do - let newPath = ethAccountFilePath.Replace(ethConfigDir.FullName, tokenConfigDir.FullName) - if not (File.Exists newPath) then - File.Copy(ethAccountFilePath, newPath) + let maybeTokenConfigDir = GetConfigDirInternal token accountKind false + match maybeTokenConfigDir with + | Some _ -> + // already removed token account before + () + | None -> + // now create it if it wasn't there before + let tokenConfigDir = GetConfigDir token accountKind + for ethAccountFilePath in Directory.GetFiles ethConfigDir.FullName do + let newPath = ethAccountFilePath.Replace(ethConfigDir.FullName, tokenConfigDir.FullName) + if not (File.Exists newPath) then + File.Copy(ethAccountFilePath, newPath) let GetAccountFiles (currencies: seq) (accountKind: AccountKind): seq = seq { From 8790d3f772d09777aa1f9d3fd8cf18a52819eddd Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Mon, 19 Feb 2024 18:58:38 +0800 Subject: [PATCH 3/5] Backend: update servers.json (pre-bump) --- src/GWallet.Backend/servers.json | 1162 +++++++++++++++--------------- 1 file changed, 574 insertions(+), 588 deletions(-) diff --git a/src/GWallet.Backend/servers.json b/src/GWallet.Backend/servers.json index 980caae69..b70deff6b 100644 --- a/src/GWallet.Backend/servers.json +++ b/src/GWallet.Backend/servers.json @@ -1,17 +1,17 @@ { - "Version": "0.6.425.0", + "Version": "0.6.431.0", "TypeName": "Microsoft.FSharp.Collections.FSharpMap`2[GWallet.Backend.Currency,System.Collections.Generic.IEnumerable`1[GWallet.Backend.ServerDetails]]", "Value": { "BTC": [ { "ServerInfo": { - "NetworkPath": "blockstream.info", + "NetworkPath": "bitcoin.aranguren.org", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 110 + 50001 ] } } @@ -21,25 +21,25 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.9490313", + "TimeSpan": "00:00:00.9296961", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:57.539097Z" + "Item2": "2024-02-19T10:58:06.288507Z" } ] } }, { "ServerInfo": { - "NetworkPath": "bitcoin.aranguren.org", + "NetworkPath": "blockstream.info", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50001 + 110 ] } } @@ -49,19 +49,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.9828700", + "TimeSpan": "00:00:01.0074939", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.386136Z" + "Item2": "2024-02-19T10:58:05.0491Z" } ] } }, { "ServerInfo": { - "NetworkPath": "b.1209k.com", + "NetworkPath": "bitcoin.lukechilds.co", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -77,19 +77,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.1566137", + "TimeSpan": "00:00:01.0632944", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:55.900755Z" + "Item2": "2024-02-19T10:58:07.368778Z" } ] } }, { "ServerInfo": { - "NetworkPath": "bitcoin.lukechilds.co", + "NetworkPath": "b.1209k.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -105,19 +105,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.1756288", + "TimeSpan": "00:00:01.1316819", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:23:18.876641Z" + "Item2": "2024-02-19T10:58:14.303189Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.blockstream.info", + "NetworkPath": "gods-of-rock.screaminglemur.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -133,19 +133,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.2753254", + "TimeSpan": "00:00:01.1928075", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:57.207588Z" + "Item2": "2024-02-19T10:58:06.576724Z" } ] } }, { "ServerInfo": { - "NetworkPath": "btc.electrum.bitbitnet.net", + "NetworkPath": "52.1.56.181", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -161,19 +161,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.3468178", + "TimeSpan": "00:00:01.2052654", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.716757Z" + "Item2": "2024-02-19T10:58:06.774925Z" } ] } }, { "ServerInfo": { - "NetworkPath": "e.keff.org", + "NetworkPath": "electrum.emzy.de", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -189,19 +189,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.4603056", + "TimeSpan": "00:00:01.2429886", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:56.569605Z" + "Item2": "2024-02-19T10:58:29.107506Z" } ] } }, { "ServerInfo": { - "NetworkPath": "gods-of-rock.screaminglemur.net", + "NetworkPath": "horsey.cryptocowboys.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -217,19 +217,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.5252665", + "TimeSpan": "00:00:01.2472167", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:58.750771Z" + "Item2": "2024-02-19T10:58:07.837209Z" } ] } }, { "ServerInfo": { - "NetworkPath": "52.1.56.181", + "NetworkPath": "kirsche.emzy.de", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -245,19 +245,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.7402353", + "TimeSpan": "00:00:01.2715466", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:55.084304Z" + "Item2": "2024-02-19T10:58:30.397104Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrumx-btc.cryptonermal.net", + "NetworkPath": "btc.electrum.bitbitnet.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -273,19 +273,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:03.5178953", + "TimeSpan": "00:00:01.2859072", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:57.936103Z" + "Item2": "2024-02-19T10:58:05.358759Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.coineuskal.com", + "NetworkPath": "electrum.blockstream.info", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -301,19 +301,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:03.8488666", + "TimeSpan": "00:00:01.2854007", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:57.187621Z" + "Item2": "2024-02-19T10:58:05.343197Z" } ] } }, { "ServerInfo": { - "NetworkPath": "horsey.cryptocowboys.net", + "NetworkPath": "electrumx-btc.cryptonermal.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -329,19 +329,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:04.0492787", + "TimeSpan": "00:00:01.4290663", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:23:01.256919Z" + "Item2": "2024-02-19T10:58:06.505085Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.leblancnet.us", + "NetworkPath": "e.keff.org", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -357,28 +357,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0019027", + "TimeSpan": "00:00:01.4748978", "Status": { - "Case": "Fault", - "Fields": [ - { - "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "JsonRpcSharp faced some problem when trying communication" - }, - "LastSuccessfulCommunication": null - } - ] + "Case": "Success" } }, - "Item2": "2024-02-02T05:23:06.438205Z" + "Item2": "2024-02-19T10:58:05.548164Z" } ] } }, { "ServerInfo": { - "NetworkPath": "e-1.claudioboxx.com", + "NetworkPath": "electrum.coineuskal.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -394,21 +385,12 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0016405", + "TimeSpan": "00:00:04.5875755", "Status": { - "Case": "Fault", - "Fields": [ - { - "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "JsonRpcSharp faced some problem when trying communication" - }, - "LastSuccessfulCommunication": null - } - ] + "Case": "Success" } }, - "Item2": "2024-02-02T05:23:05.779506Z" + "Item2": "2024-02-19T10:58:11.10895Z" } ] } @@ -431,7 +413,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0021657", + "TimeSpan": "00:00:00.0014576", "Status": { "Case": "Fault", "Fields": [ @@ -450,20 +432,20 @@ ] } }, - "Item2": "2024-02-02T05:22:59.516257Z" + "Item2": "2024-02-19T10:58:06.838616Z" } ] } }, { "ServerInfo": { - "NetworkPath": "green-gold.westeurope.cloudapp.azure.com", + "NetworkPath": "e-1.claudioboxx.com", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 56001 + 50001 ] } } @@ -473,7 +455,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0463530", + "TimeSpan": "00:00:00.0014541", "Status": { "Case": "Fault", "Fields": [ @@ -487,14 +469,14 @@ ] } }, - "Item2": "2024-02-02T05:23:18.940789Z" + "Item2": "2024-02-19T10:58:08.244264Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum-server.ninja", + "NetworkPath": "electrum.leblancnet.us", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -510,7 +492,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0477265", + "TimeSpan": "00:00:00.0013380", "Status": { "Case": "Fault", "Fields": [ @@ -519,24 +501,19 @@ "TypeFullName": "GWallet.Backend.ServerUnreachableException", "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2020-05-13T17:10:10.322225Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:05.765017Z" + "Item2": "2024-02-19T10:58:07.268751Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum2.eff.ro", + "NetworkPath": "electrum.villocq.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -552,7 +529,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0666782", + "TimeSpan": "00:00:00.0254462", "Status": { "Case": "Fault", "Fields": [ @@ -566,14 +543,14 @@ ] } }, - "Item2": "2024-02-02T05:23:08.032828Z" + "Item2": "2024-02-19T10:58:06.811731Z" } ] } }, { "ServerInfo": { - "NetworkPath": "cashyes.zapto.org", + "NetworkPath": "electrum2.villocq.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -589,28 +566,28 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0792617", + "TimeSpan": "00:00:00.0289337", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "JsonRpcSharp faced some problem when trying communication" }, "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:08.661967Z" + "Item2": "2024-02-19T10:58:06.934946Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.festivaldelhumor.org", + "NetworkPath": "electrumx.ddns.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -626,28 +603,28 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0903785", + "TimeSpan": "00:00:00.0290109", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "JsonRpcSharp faced some problem when trying communication" + "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", + "Message": "One or more errors occurred. (Connection refused)" }, "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:14.991407Z" + "Item2": "2024-02-19T10:58:08.53187Z" } ] } }, { "ServerInfo": { - "NetworkPath": "erbium1.sytes.net", + "NetworkPath": "electrum-server.ninja", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -663,34 +640,39 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1128788", + "TimeSpan": "00:00:00.0300310", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2020-05-13T17:10:10.322225Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:09.303448Z" + "Item2": "2024-02-19T10:58:11.151399Z" } ] } }, { "ServerInfo": { - "NetworkPath": "the.electrum.bar", + "NetworkPath": "electrum.festivaldelhumor.org", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 55001 + 50001 ] } } @@ -700,7 +682,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1695710", + "TimeSpan": "00:00:00.0362068", "Status": { "Case": "Fault", "Fields": [ @@ -709,24 +691,19 @@ "TypeFullName": "GWallet.Backend.ServerUnreachableException", "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2021-03-24T02:14:23.105294Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:00.188929Z" + "Item2": "2024-02-19T10:58:06.893547Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum3.hachre.de", + "NetworkPath": "dedi.jochen-hoenicke.de", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -742,7 +719,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1720630", + "TimeSpan": "00:00:00.0509988", "Status": { "Case": "Fault", "Fields": [ @@ -756,20 +733,20 @@ ] } }, - "Item2": "2024-02-02T05:23:13.308366Z" + "Item2": "2024-02-19T10:58:08.20853Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.bitkoins.nl", + "NetworkPath": "green-gold.westeurope.cloudapp.azure.com", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50001 + 56001 ] } } @@ -779,7 +756,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1739170", + "TimeSpan": "00:00:00.0625542", "Status": { "Case": "Fault", "Fields": [ @@ -793,14 +770,14 @@ ] } }, - "Item2": "2024-02-02T05:23:08.564925Z" + "Item2": "2024-02-19T10:58:07.252343Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.villocq.com", + "NetworkPath": "electrum2.eff.ro", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -816,7 +793,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1874474", + "TimeSpan": "00:00:00.0652183", "Status": { "Case": "Fault", "Fields": [ @@ -830,14 +807,14 @@ ] } }, - "Item2": "2024-02-02T05:23:06.423916Z" + "Item2": "2024-02-19T10:58:14.385132Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum2.villocq.com", + "NetworkPath": "cashyes.zapto.org", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -853,28 +830,28 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1962922", + "TimeSpan": "00:00:00.0862450", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "JsonRpcSharp faced some problem when trying communication" + "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", + "Message": "One or more errors occurred. (Connection refused)" }, "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:14.421621Z" + "Item2": "2024-02-19T10:58:08.227659Z" } ] } }, { "ServerInfo": { - "NetworkPath": "orannis.com", + "NetworkPath": "erbium1.sytes.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -890,28 +867,28 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.2007661", + "TimeSpan": "00:00:00.1187855", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "JsonRpcSharp faced some problem when trying communication" + "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", + "Message": "One or more errors occurred. (Connection refused)" }, "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:06.652535Z" + "Item2": "2024-02-19T10:58:08.314832Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrumx.ddns.net", + "NetworkPath": "icarus.tetradrachm.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -927,28 +904,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.2147206", + "TimeSpan": "00:00:00.1741762", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2021-04-07T04:11:44.338945Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:06.198058Z" + "Item2": "2024-02-19T10:58:08.398794Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.eff.ro", + "NetworkPath": "orannis.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -964,7 +946,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.2750402", + "TimeSpan": "00:00:00.1864494", "Status": { "Case": "Fault", "Fields": [ @@ -978,14 +960,14 @@ ] } }, - "Item2": "2024-02-02T05:23:07.265444Z" + "Item2": "2024-02-19T10:58:08.513403Z" } ] } }, { "ServerInfo": { - "NetworkPath": "us.electrum.be", + "NetworkPath": "vmd27610.contaboserver.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1001,7 +983,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.2996712", + "TimeSpan": "00:00:00.2061014", "Status": { "Case": "Fault", "Fields": [ @@ -1015,14 +997,14 @@ ] } }, - "Item2": "2024-02-02T05:23:11.472043Z" + "Item2": "2024-02-19T10:58:10.284554Z" } ] } }, { "ServerInfo": { - "NetworkPath": "btc.jochen-hoenicke.de", + "NetworkPath": "electrum3.hachre.de", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1038,34 +1020,34 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.3023891", + "TimeSpan": "00:00:00.2123395", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "JsonRpcSharp faced some problem when trying communication" }, "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:19.913286Z" + "Item2": "2024-02-19T10:58:07.161455Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.jochen-hoenicke.de", + "NetworkPath": "electrum2.privateservers.network", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50003 + 50001 ] } } @@ -1075,33 +1057,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.3037868", + "TimeSpan": "00:00:00.2334282", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "JsonRpcSharp faced some problem when trying communication" }, "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2020-06-10T16:38:57.73713Z" + "2021-04-07T04:12:42.330604Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:19.77017Z" + "Item2": "2024-02-19T10:58:08.489493Z" } ] } }, { "ServerInfo": { - "NetworkPath": "dedi.jochen-hoenicke.de", + "NetworkPath": "electrum.aantonop.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1117,7 +1099,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.3056011", + "TimeSpan": "00:00:00.2344347", "Status": { "Case": "Fault", "Fields": [ @@ -1131,14 +1113,14 @@ ] } }, - "Item2": "2024-02-02T05:23:06.973194Z" + "Item2": "2024-02-19T10:58:11.744972Z" } ] } }, { "ServerInfo": { - "NetworkPath": "vmd27610.contaboserver.net", + "NetworkPath": "vmd30612.contaboserver.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1154,7 +1136,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.3896452", + "TimeSpan": "00:00:00.2479566", "Status": { "Case": "Fault", "Fields": [ @@ -1168,14 +1150,14 @@ ] } }, - "Item2": "2024-02-02T05:23:06.813619Z" + "Item2": "2024-02-19T10:58:09.679681Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.hsmiths.com", + "NetworkPath": "electrumx-core.1209k.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1191,39 +1173,39 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.3946682", + "TimeSpan": "00:00:00.2626807", "Status": { "Case": "Fault", "Fields": [ { "Exception": { "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "Message": "One or more errors occurred. (No route to host)" }, "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2020-06-10T16:39:23.636763Z" + "2021-11-08T21:34:47.636314Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:05.967743Z" + "Item2": "2024-02-19T10:58:12.288696Z" } ] } }, { "ServerInfo": { - "NetworkPath": "fortress.qtornado.com", + "NetworkPath": "electrum.jochen-hoenicke.de", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50001 + 50003 ] } } @@ -1233,7 +1215,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.4164477", + "TimeSpan": "00:00:00.2667507", "Status": { "Case": "Fault", "Fields": [ @@ -1245,21 +1227,21 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2020-04-29T04:36:44.664096Z" + "2020-06-10T16:38:57.73713Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:17.681304Z" + "Item2": "2024-02-19T10:58:10.063635Z" } ] } }, { "ServerInfo": { - "NetworkPath": "vmd30612.contaboserver.net", + "NetworkPath": "us.electrum.be", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1275,7 +1257,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.4631116", + "TimeSpan": "00:00:00.2739365", "Status": { "Case": "Fault", "Fields": [ @@ -1289,14 +1271,14 @@ ] } }, - "Item2": "2024-02-02T05:23:09.779573Z" + "Item2": "2024-02-19T10:58:13.157633Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum2.privateservers.network", + "NetworkPath": "korea.electrum-server.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1312,7 +1294,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.4855914", + "TimeSpan": "00:00:00.2742838", "Status": { "Case": "Fault", "Fields": [ @@ -1324,21 +1306,21 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2021-04-07T04:12:42.330604Z" + "2021-11-28T15:17:37.337707Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:00.001913Z" + "Item2": "2024-02-19T10:58:09.781813Z" } ] } }, { "ServerInfo": { - "NetworkPath": "E-X.not.fyi", + "NetworkPath": "btc.jochen-hoenicke.de", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1354,7 +1336,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.4969391", + "TimeSpan": "00:00:00.3135516", "Status": { "Case": "Fault", "Fields": [ @@ -1368,14 +1350,14 @@ ] } }, - "Item2": "2024-02-02T05:23:09.174996Z" + "Item2": "2024-02-19T10:58:11.479729Z" } ] } }, { "ServerInfo": { - "NetworkPath": "korea.electrum-server.com", + "NetworkPath": "ecdsa.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1391,33 +1373,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.4989242", + "TimeSpan": "00:00:00.3647245", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "JsonRpcSharp faced some problem when trying communication" + "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", + "Message": "One or more errors occurred. (Connection refused)" }, "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2021-11-28T15:17:37.337707Z" + "2020-10-05T23:03:59.72093Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:19.451984Z" + "Item2": "2024-02-19T10:58:11.094345Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrumx.soon.it", + "NetworkPath": "electrum.qtornado.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1433,7 +1415,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.4986807", + "TimeSpan": "00:00:00.3856527", "Status": { "Case": "Fault", "Fields": [ @@ -1442,19 +1424,24 @@ "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", "Message": "One or more errors occurred. (Connection refused)" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2020-10-05T23:22:33.078584Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:11.986853Z" + "Item2": "2024-02-19T10:58:11.494062Z" } ] } }, { "ServerInfo": { - "NetworkPath": "ecdsa.net", + "NetworkPath": "VPS.hsmiths.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1470,7 +1457,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.5438901", + "TimeSpan": "00:00:00.3954454", "Status": { "Case": "Fault", "Fields": [ @@ -1482,21 +1469,21 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2020-10-05T23:03:59.72093Z" + "2020-10-05T23:37:20.833549Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:20.34096Z" + "Item2": "2024-02-19T10:58:12.447699Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.qtornado.com", + "NetworkPath": "E-X.not.fyi", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1512,7 +1499,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.5443064", + "TimeSpan": "00:00:00.4070448", "Status": { "Case": "Fault", "Fields": [ @@ -1521,24 +1508,19 @@ "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", "Message": "One or more errors occurred. (Connection refused)" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2020-10-05T23:22:33.078584Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:05.197012Z" + "Item2": "2024-02-19T10:58:12.167139Z" } ] } }, { "ServerInfo": { - "NetworkPath": "VPS.hsmiths.com", + "NetworkPath": "btc.cihar.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1554,7 +1536,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.5509903", + "TimeSpan": "00:00:00.4183076", "Status": { "Case": "Fault", "Fields": [ @@ -1563,24 +1545,19 @@ "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", "Message": "One or more errors occurred. (Connection refused)" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2020-10-05T23:37:20.833549Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:04.638892Z" + "Item2": "2024-02-19T10:58:10.714691Z" } ] } }, { "ServerInfo": { - "NetworkPath": "btc.cihar.com", + "NetworkPath": "fortress.qtornado.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1596,7 +1573,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.5964549", + "TimeSpan": "00:00:00.4323531", "Status": { "Case": "Fault", "Fields": [ @@ -1605,19 +1582,24 @@ "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", "Message": "One or more errors occurred. (Connection refused)" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2020-04-29T04:36:44.664096Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:15.603253Z" + "Item2": "2024-02-19T10:58:08.977088Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrumx.bot.nu", + "NetworkPath": "185.64.116.15", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1633,7 +1615,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.6056690", + "TimeSpan": "00:00:00.5101317", "Status": { "Case": "Fault", "Fields": [ @@ -1642,25 +1624,30 @@ "TypeFullName": "GWallet.Backend.ServerUnreachableException", "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2023-02-08T19:08:48.784449Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:06.404674Z" + "Item2": "2024-02-19T10:58:15.917527Z" } ] } }, { "ServerInfo": { - "NetworkPath": "tardis.bauerj.eu", + "NetworkPath": "the.electrum.bar", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50001 + 55001 ] } } @@ -1670,28 +1657,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.6276514", + "TimeSpan": "00:00:00.5119344", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2021-03-24T02:14:23.105294Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:20.323188Z" + "Item2": "2024-02-19T10:58:12.696078Z" } ] } }, { "ServerInfo": { - "NetworkPath": "helicarrier.bauerj.eu", + "NetworkPath": "electrum.hsmiths.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1707,7 +1699,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.6584786", + "TimeSpan": "00:00:00.5234177", "Status": { "Case": "Fault", "Fields": [ @@ -1719,21 +1711,21 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2020-10-05T23:22:32.274992Z" + "2020-06-10T16:39:23.636763Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:05.871131Z" + "Item2": "2024-02-19T10:58:12.015149Z" } ] } }, { "ServerInfo": { - "NetworkPath": "daedalus.bauerj.eu", + "NetworkPath": "b.ooze.cc", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1749,7 +1741,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.6629517", + "TimeSpan": "00:00:00.5673060", "Status": { "Case": "Fault", "Fields": [ @@ -1761,14 +1753,14 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2020-10-05T23:37:44.386346Z" + "2023-10-31T10:04:40.33572Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:04.071749Z" + "Item2": "2024-02-19T10:58:12.869638Z" } ] } @@ -1791,7 +1783,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.6713879", + "TimeSpan": "00:00:00.6438683", "Status": { "Case": "Fault", "Fields": [ @@ -1805,14 +1797,14 @@ ] } }, - "Item2": "2024-02-02T05:23:07.949336Z" + "Item2": "2024-02-19T10:58:15.044474Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrumx-core.1209k.com", + "NetworkPath": "electrum.bitkoins.nl", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1828,33 +1820,28 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.7043187", + "TimeSpan": "00:00:00.7515606", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (No route to host)" + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2021-11-08T21:34:47.636314Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:22:59.494931Z" + "Item2": "2024-02-19T10:58:08.141326Z" } ] } }, { "ServerInfo": { - "NetworkPath": "185.64.116.15", + "NetworkPath": "daedalus.bauerj.eu", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1870,33 +1857,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.7494369", + "TimeSpan": "00:00:00.8494521", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "JsonRpcSharp faced some problem when trying communication" + "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", + "Message": "One or more errors occurred. (Connection refused)" }, "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2023-02-08T19:08:48.784449Z" + "2020-10-05T23:37:44.386346Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:21.090463Z" + "Item2": "2024-02-19T10:58:13.308974Z" } ] } }, { "ServerInfo": { - "NetworkPath": "bitcoin.corgi.party", + "NetworkPath": "b6.1209k.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1912,21 +1899,26 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.8586452", + "TimeSpan": "00:00:00.8681140", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerMisconfiguredException", - "Message": "Server's reply was not valid json: foo\n" + "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", + "Message": "One or more errors occurred. (No route to host)" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2021-11-08T21:35:19.101061Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:20.790569Z" + "Item2": "2024-02-19T10:58:08.170918Z" } ] } @@ -1949,7 +1941,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.8698332", + "TimeSpan": "00:00:00.9012929", "Status": { "Case": "Fault", "Fields": [ @@ -1963,14 +1955,14 @@ ] } }, - "Item2": "2024-02-02T05:23:08.377614Z" + "Item2": "2024-02-19T10:58:15.397287Z" } ] } }, { "ServerInfo": { - "NetworkPath": "icarus.tetradrachm.net", + "NetworkPath": "bitcoin.corgi.party", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -1986,33 +1978,28 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.9203744", + "TimeSpan": "00:00:00.9706562", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "TypeFullName": "GWallet.Backend.ServerMisconfiguredException", + "Message": "Server's reply was not valid json: foo\n" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2021-04-07T04:11:44.338945Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:00.452695Z" + "Item2": "2024-02-19T10:58:09.495133Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.aantonop.com", + "NetworkPath": "enode.duckdns.org", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2028,28 +2015,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.0540435", + "TimeSpan": "00:00:00.9867588", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "JsonRpcSharp faced some problem when trying communication" + "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", + "Message": "One or more errors occurred. (One or more errors occurred. (Connection reset by peer))" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2020-11-02T18:03:43.175875Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:07.492304Z" + "Item2": "2024-02-19T10:58:17.104507Z" } ] } }, { "ServerInfo": { - "NetworkPath": "b6.1209k.com", + "NetworkPath": "electrum.eff.ro", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2065,33 +2057,28 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.5157866", + "TimeSpan": "00:00:00.9953753", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (No route to host)" + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2021-11-08T21:35:19.101061Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:22:59.472982Z" + "Item2": "2024-02-19T10:58:12.041222Z" } ] } }, { "ServerInfo": { - "NetworkPath": "enode.duckdns.org", + "NetworkPath": "electrumx.bot.nu", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2107,39 +2094,34 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:02.1193362", + "TimeSpan": "00:00:01.0008461", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (One or more errors occurred. (Connection reset by peer))" + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2020-11-02T18:03:43.175875Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:03.392048Z" + "Item2": "2024-02-19T10:58:09.417728Z" } ] } }, { "ServerInfo": { - "NetworkPath": "fn.48.org", + "NetworkPath": "oneweek.duckdns.org", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50003 + 50001 ] } } @@ -2149,28 +2131,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:02.2118165", + "TimeSpan": "00:00:01.0478456", "Status": { "Case": "Fault", "Fields": [ { "Exception": { "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "Message": "One or more errors occurred. (One or more errors occurred. (Connection reset by peer))" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2020-10-27T21:12:27.613963Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:14.211902Z" + "Item2": "2024-02-19T10:58:16.106041Z" } ] } }, { "ServerInfo": { - "NetworkPath": "oneweek.duckdns.org", + "NetworkPath": "electrumx.soon.it", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2186,39 +2173,34 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:03.5615976", + "TimeSpan": "00:00:01.3364372", "Status": { "Case": "Fault", "Fields": [ - { - "Exception": { - "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (One or more errors occurred. (Connection reset by peer))" - }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2020-10-27T21:12:27.613963Z" - ] - } + { + "Exception": { + "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", + "Message": "One or more errors occurred. (Connection refused)" + }, + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:06.381785Z" + "Item2": "2024-02-19T10:58:11.03302Z" } ] } }, { "ServerInfo": { - "NetworkPath": "ulrichard.ch", + "NetworkPath": "fn.48.org", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50001 + 50003 ] } } @@ -2228,21 +2210,21 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.0723753", + "TimeSpan": "00:00:02.9770250", "Status": { "Case": "Fault", "Fields": [ { "Exception": { "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "Socket connect timed out" + "Message": "One or more errors occurred. (Connection refused)" }, "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:13.119775Z" + "Item2": "2024-02-19T10:58:18.914001Z" } ] } @@ -2265,14 +2247,14 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.0849232", + "TimeSpan": "00:00:04.1826159", "Status": { "Case": "Fault", "Fields": [ { "Exception": { "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "Socket connect timed out" + "Message": "One or more errors occurred. (Network is unreachable)" }, "LastSuccessfulCommunication": { "Case": "Some", @@ -2284,20 +2266,20 @@ ] } }, - "Item2": "2024-02-02T05:23:05.553301Z" + "Item2": "2024-02-19T10:58:27.849366Z" } ] } }, { "ServerInfo": { - "NetworkPath": "bitcoin.dragon.zone", + "NetworkPath": "yuio.top", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50003 + 50001 ] } } @@ -2307,7 +2289,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.0877072", + "TimeSpan": "00:00:05.0330484", "Status": { "Case": "Fault", "Fields": [ @@ -2321,7 +2303,7 @@ ] } }, - "Item2": "2024-02-02T05:23:14.882932Z" + "Item2": "2024-02-19T10:58:27.41818Z" } ] } @@ -2344,7 +2326,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.1239021", + "TimeSpan": "00:00:05.0724470", "Status": { "Case": "Fault", "Fields": [ @@ -2358,20 +2340,20 @@ ] } }, - "Item2": "2024-02-02T05:23:17.250408Z" + "Item2": "2024-02-19T10:58:23.649625Z" } ] } }, { "ServerInfo": { - "NetworkPath": "b.ooze.cc", + "NetworkPath": "bitcoin.dragon.zone", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50001 + 50003 ] } } @@ -2381,7 +2363,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.2037563", + "TimeSpan": "00:00:05.0941343", "Status": { "Case": "Fault", "Fields": [ @@ -2390,24 +2372,19 @@ "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", "Message": "Socket connect timed out" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2023-10-31T10:04:40.33572Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:25.558921Z" + "Item2": "2024-02-19T10:58:24.021414Z" } ] } }, { "ServerInfo": { - "NetworkPath": "yuio.top", + "NetworkPath": "tardis.bauerj.eu", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2423,7 +2400,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.2409246", + "TimeSpan": "00:00:05.2405972", "Status": { "Case": "Fault", "Fields": [ @@ -2437,14 +2414,14 @@ ] } }, - "Item2": "2024-02-02T05:23:19.680996Z" + "Item2": "2024-02-19T10:58:18.561178Z" } ] } }, { "ServerInfo": { - "NetworkPath": "kirsche.emzy.de", + "NetworkPath": "fedaykin.goip.de", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2460,7 +2437,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.2489585", + "TimeSpan": "00:00:05.2531499", "Status": { "Case": "Fault", "Fields": [ @@ -2469,24 +2446,19 @@ "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", "Message": "Socket connect timed out" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2023-02-08T19:08:51.256546Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:02.801642Z" + "Item2": "2024-02-19T10:58:22.369118Z" } ] } }, { "ServerInfo": { - "NetworkPath": "btc.xskyx.net", + "NetworkPath": "helicarrier.bauerj.eu", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2502,7 +2474,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.2630351", + "TimeSpan": "00:00:05.2947878", "Status": { "Case": "Fault", "Fields": [ @@ -2511,19 +2483,24 @@ "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", "Message": "Socket connect timed out" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2020-10-05T23:22:32.274992Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:11.151008Z" + "Item2": "2024-02-19T10:58:18.00368Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.emzy.de", + "NetworkPath": "ulrichard.ch", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2539,7 +2516,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.2715529", + "TimeSpan": "00:00:05.2982518", "Status": { "Case": "Fault", "Fields": [ @@ -2548,17 +2525,12 @@ "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", "Message": "Socket connect timed out" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2023-02-08T19:09:05.304373Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:26.185662Z" + "Item2": "2024-02-19T10:58:29.336769Z" } ] } @@ -2581,7 +2553,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.2710800", + "TimeSpan": "00:00:05.3579842", "Status": { "Case": "Fault", "Fields": [ @@ -2595,14 +2567,14 @@ ] } }, - "Item2": "2024-02-02T05:23:12.103878Z" + "Item2": "2024-02-19T10:58:29.413015Z" } ] } }, { "ServerInfo": { - "NetworkPath": "ndnd.selfhost.eu", + "NetworkPath": "btc.xskyx.net", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2618,7 +2590,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.2826718", + "TimeSpan": "00:00:05.3837301", "Status": { "Case": "Fault", "Fields": [ @@ -2632,7 +2604,7 @@ ] } }, - "Item2": "2024-02-02T05:23:20.899681Z" + "Item2": "2024-02-19T10:58:32.815569Z" } ] } @@ -2655,7 +2627,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.4992518", + "TimeSpan": "00:00:05.4864050", "Status": { "Case": "Fault", "Fields": [ @@ -2674,7 +2646,7 @@ ] } }, - "Item2": "2024-02-02T05:23:05.701571Z" + "Item2": "2024-02-19T10:58:34.912694Z" } ] } @@ -2697,7 +2669,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.5540434", + "TimeSpan": "00:00:05.4902581", "Status": { "Case": "Fault", "Fields": [ @@ -2716,7 +2688,7 @@ ] } }, - "Item2": "2024-02-02T05:23:26.664852Z" + "Item2": "2024-02-19T10:58:14.482421Z" } ] } @@ -2739,7 +2711,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.5714038", + "TimeSpan": "00:00:05.4926550", "Status": { "Case": "Fault", "Fields": [ @@ -2758,14 +2730,14 @@ ] } }, - "Item2": "2024-02-02T05:23:26.374793Z" + "Item2": "2024-02-19T10:58:34.84343Z" } ] } }, { "ServerInfo": { - "NetworkPath": "fedaykin.goip.de", + "NetworkPath": "ndnd.selfhost.eu", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2781,7 +2753,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:06.2715669", + "TimeSpan": "00:00:06.0236253", "Status": { "Case": "Fault", "Fields": [ @@ -2795,7 +2767,7 @@ ] } }, - "Item2": "2024-02-02T05:23:19.594828Z" + "Item2": "2024-02-19T10:58:24.042439Z" } ] } @@ -2804,7 +2776,7 @@ "LTC": [ { "ServerInfo": { - "NetworkPath": "electrum-ltc.bysh.me", + "NetworkPath": "backup.electrum-ltc.org", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2820,19 +2792,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.3761580", + "TimeSpan": "00:00:01.3296948", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.744082Z" + "Item2": "2024-02-19T10:58:05.38627Z" } ] } }, { "ServerInfo": { - "NetworkPath": "ltc.rentonisk.com", + "NetworkPath": "electrum-ltc.bysh.me", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2848,19 +2820,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.4956957", + "TimeSpan": "00:00:01.3866744", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.840652Z" + "Item2": "2024-02-19T10:58:05.439356Z" } ] } }, { "ServerInfo": { - "NetworkPath": "backup.electrum-ltc.org", + "NetworkPath": "ltc.rentonisk.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -2876,12 +2848,12 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.5079254", + "TimeSpan": "00:00:01.4312000", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.866823Z" + "Item2": "2024-02-19T10:58:05.521192Z" } ] } @@ -2904,25 +2876,25 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.6173780", + "TimeSpan": "00:00:02.9888949", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.956139Z" + "Item2": "2024-02-19T10:58:07.069419Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrumx.nmdps.net", + "NetworkPath": "electrum.leblancnet.us", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 9433 + 50003 ] } } @@ -2932,7 +2904,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0746466", + "TimeSpan": "00:00:00.0702079", "Status": { "Case": "Fault", "Fields": [ @@ -2941,12 +2913,17 @@ "TypeFullName": "GWallet.Backend.ServerUnreachableException", "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2020-08-05T18:26:50.496106Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:22:55.00422Z" + "Item2": "2024-02-19T10:58:05.494665Z" } ] } @@ -2969,7 +2946,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0772861", + "TimeSpan": "00:00:00.0727779", "Status": { "Case": "Fault", "Fields": [ @@ -2983,14 +2960,14 @@ ] } }, - "Item2": "2024-02-02T05:22:55.064257Z" + "Item2": "2024-02-19T10:58:05.569605Z" } ] } }, { "ServerInfo": { - "NetworkPath": "electrum.leblancnet.us", + "NetworkPath": "e-3.claudioboxx.com", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -3006,7 +2983,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0850332", + "TimeSpan": "00:00:00.0832042", "Status": { "Case": "Fault", "Fields": [ @@ -3015,17 +2992,12 @@ "TypeFullName": "GWallet.Backend.ServerUnreachableException", "Message": "JsonRpcSharp faced some problem when trying communication" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2020-08-05T18:26:50.496106Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:22:55.169411Z" + "Item2": "2024-02-19T10:58:05.68371Z" } ] } @@ -3048,7 +3020,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0972298", + "TimeSpan": "00:00:00.0845529", "Status": { "Case": "Fault", "Fields": [ @@ -3067,20 +3039,20 @@ ] } }, - "Item2": "2024-02-02T05:22:54.978941Z" + "Item2": "2024-02-19T10:58:05.605775Z" } ] } }, { "ServerInfo": { - "NetworkPath": "e-3.claudioboxx.com", + "NetworkPath": "electrumx.nmdps.net", "ConnectionType": { "Encrypted": false, "Protocol": { "Case": "Tcp", "Fields": [ - 50003 + 9433 ] } } @@ -3090,7 +3062,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1117853", + "TimeSpan": "00:00:00.0891241", "Status": { "Case": "Fault", "Fields": [ @@ -3104,7 +3076,7 @@ ] } }, - "Item2": "2024-02-02T05:22:55.116029Z" + "Item2": "2024-02-19T10:58:05.637379Z" } ] } @@ -3127,7 +3099,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.2401942", + "TimeSpan": "00:00:00.2282215", "Status": { "Case": "Fault", "Fields": [ @@ -3141,14 +3113,14 @@ ] } }, - "Item2": "2024-02-02T05:22:55.045362Z" + "Item2": "2024-02-19T10:58:05.858558Z" } ] } }, { "ServerInfo": { - "NetworkPath": "node.ispol.sk", + "NetworkPath": "ltc01.knas.systems", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -3164,33 +3136,28 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.8056430", + "TimeSpan": "00:00:05.0403242", "Status": { "Case": "Fault", "Fields": [ { "Exception": { "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", - "Message": "One or more errors occurred. (Connection refused)" + "Message": "Socket connect timed out" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2019-08-22T17:48:06.518843Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:22:55.945944Z" + "Item2": "2024-02-19T10:58:10.74134Z" } ] } }, { "ServerInfo": { - "NetworkPath": "ltc01.knas.systems", + "NetworkPath": "node.ispol.sk", "ConnectionType": { "Encrypted": false, "Protocol": { @@ -3206,7 +3173,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.1210920", + "TimeSpan": "00:00:05.7327883", "Status": { "Case": "Fault", "Fields": [ @@ -3215,12 +3182,17 @@ "TypeFullName": "GWallet.Backend.CommunicationUnsuccessfulException", "Message": "Socket connect timed out" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2019-08-22T17:48:06.518843Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:00.145571Z" + "Item2": "2024-02-19T10:58:11.388489Z" } ] } @@ -3243,7 +3215,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:05.5773923", + "TimeSpan": "00:00:06.0676885", "Status": { "Case": "Fault", "Fields": [ @@ -3257,7 +3229,7 @@ ] } }, - "Item2": "2024-02-02T05:23:00.641685Z" + "Item2": "2024-02-19T10:58:11.947423Z" } ] } @@ -3279,12 +3251,12 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.9297698", + "TimeSpan": "00:00:00.5615367", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.292051Z" + "Item2": "2024-02-19T10:58:04.650082Z" } ] } @@ -3304,12 +3276,12 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.9721330", + "TimeSpan": "00:00:00.6086894", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.356808Z" + "Item2": "2024-02-19T10:58:04.698719Z" } ] } @@ -3329,12 +3301,12 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.1069880", + "TimeSpan": "00:00:00.8296579", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.462461Z" + "Item2": "2024-02-19T10:58:04.871292Z" } ] } @@ -3354,7 +3326,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0616984", + "TimeSpan": "00:00:00.0076112", "Status": { "Case": "Fault", "Fields": [ @@ -3368,7 +3340,7 @@ ] } }, - "Item2": "2024-02-02T05:22:54.431003Z" + "Item2": "2024-02-19T10:58:04.900701Z" } ] } @@ -3388,7 +3360,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.2006323", + "TimeSpan": "00:00:00.2498347", "Status": { "Case": "Fault", "Fields": [ @@ -3402,7 +3374,7 @@ ] } }, - "Item2": "2024-02-02T05:22:54.685714Z" + "Item2": "2024-02-19T10:58:04.954826Z" } ] } @@ -3422,7 +3394,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.3200250", + "TimeSpan": "00:00:00.2680966", "Status": { "Case": "Fault", "Fields": [ @@ -3436,7 +3408,7 @@ ] } }, - "Item2": "2024-02-02T05:22:54.808045Z" + "Item2": "2024-02-19T10:58:05.121346Z" } ] } @@ -3456,7 +3428,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.4836526", + "TimeSpan": "00:00:00.4000203", "Status": { "Case": "Fault", "Fields": [ @@ -3475,7 +3447,7 @@ ] } }, - "Item2": "2024-02-02T05:22:55.186687Z" + "Item2": "2024-02-19T10:58:05.147028Z" } ] } @@ -3495,7 +3467,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.7413770", + "TimeSpan": "00:00:00.5285317", "Status": { "Case": "Fault", "Fields": [ @@ -3514,7 +3486,7 @@ ] } }, - "Item2": "2024-02-02T05:22:55.458264Z" + "Item2": "2024-02-19T10:58:05.472175Z" } ] } @@ -3534,7 +3506,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.7758272", + "TimeSpan": "00:00:00.7498798", "Status": { "Case": "Fault", "Fields": [ @@ -3548,7 +3520,7 @@ ] } }, - "Item2": "2024-02-02T05:22:55.616568Z" + "Item2": "2024-02-19T10:58:04.833282Z" } ] } @@ -3568,7 +3540,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.0034561", + "TimeSpan": "00:00:00.8931594", "Status": { "Case": "Fault", "Fields": [ @@ -3587,14 +3559,14 @@ ] } }, - "Item2": "2024-02-02T05:22:57.564609Z" + "Item2": "2024-02-19T10:58:05.879606Z" } ] } }, { "ServerInfo": { - "NetworkPath": "mainnet.infura.io/v3/2e5bd2ba038d4e3f969a56f2ead074ca", + "NetworkPath": "ethrpc.mewapi.io", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3607,33 +3579,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.0515255", + "TimeSpan": "00:00:00.9037709", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerMisconfiguredException", + "TypeFullName": "GWallet.Backend.Ether.ServerUnavailableException", "Message": "Could not communicate with EtherServer" }, "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2020-06-10T16:38:57.711168Z" + "2020-11-05T15:49:37.884526Z" ] } } ] } }, - "Item2": "2024-02-02T05:22:57.57971Z" + "Item2": "2024-02-19T10:58:06.398498Z" } ] } }, { "ServerInfo": { - "NetworkPath": "mainnet.infura.io/mycrypto", + "NetworkPath": "mainnet.infura.io/mew", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3646,7 +3618,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.0562266", + "TimeSpan": "00:00:00.9903929", "Status": { "Case": "Fault", "Fields": [ @@ -3658,21 +3630,21 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2019-08-22T17:48:04.922955Z" + "2019-08-22T17:48:03.066654Z" ] } } ] } }, - "Item2": "2024-02-02T05:22:56.540945Z" + "Item2": "2024-02-19T10:58:07.227889Z" } ] } }, { "ServerInfo": { - "NetworkPath": "mainnet.infura.io/v3/c02fff6b5daa434d8422b8ece54c7286", + "NetworkPath": "mainnet.infura.io/v3/2e5bd2ba038d4e3f969a56f2ead074ca", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3685,7 +3657,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.1364311", + "TimeSpan": "00:00:01.0517709", "Status": { "Case": "Fault", "Fields": [ @@ -3697,21 +3669,21 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2021-05-10T07:35:09.257181Z" + "2020-06-10T16:38:57.711168Z" ] } } ] } }, - "Item2": "2024-02-02T05:22:56.779983Z" + "Item2": "2024-02-19T10:58:06.963122Z" } ] } }, { "ServerInfo": { - "NetworkPath": "ethrpc.mewapi.io", + "NetworkPath": "mainnet.infura.io/v3/c02fff6b5daa434d8422b8ece54c7286", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3724,33 +3696,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.2588576", + "TimeSpan": "00:00:01.0724502", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.Ether.ServerUnavailableException", + "TypeFullName": "GWallet.Backend.ServerMisconfiguredException", "Message": "Could not communicate with EtherServer" }, "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2020-11-05T15:49:37.884526Z" + "2021-05-10T07:35:09.257181Z" ] } } ] } }, - "Item2": "2024-02-02T05:22:54.656942Z" + "Item2": "2024-02-19T10:58:06.219574Z" } ] } }, { "ServerInfo": { - "NetworkPath": "mainnet.infura.io/mew", + "NetworkPath": "mainnet.infura.io/mycrypto", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3763,7 +3735,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.3057236", + "TimeSpan": "00:00:01.1012617", "Status": { "Case": "Fault", "Fields": [ @@ -3775,14 +3747,14 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2019-08-22T17:48:03.066654Z" + "2019-08-22T17:48:04.922955Z" ] } } ] } }, - "Item2": "2024-02-02T05:22:56.511917Z" + "Item2": "2024-02-19T10:58:06.266986Z" } ] } @@ -3802,21 +3774,21 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:29.9862427", + "TimeSpan": "00:00:30.0044121", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "Could not communicate with EtherServer (HttpErr: GatewayTimeout)" + "TypeFullName": "GWallet.Backend.ServerTimedOutException", + "Message": "Timeout when trying to communicate with Ether server" }, "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:24.372606Z" + "Item2": "2024-02-19T10:58:36.293018Z" } ] } @@ -3838,19 +3810,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.8627270", + "TimeSpan": "00:00:00.9811765", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:55.775163Z" + "Item2": "2024-02-19T10:58:05.022799Z" } ] } }, { "ServerInfo": { - "NetworkPath": "etc.mytokenpocket.vip", + "NetworkPath": "besu-de.etc-network.info", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3863,19 +3835,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.0650390", + "TimeSpan": "00:00:01.0215553", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:55.696076Z" + "Item2": "2024-02-19T10:58:05.07601Z" } ] } }, { "ServerInfo": { - "NetworkPath": "0bfa2710a4fd4a2fba9b73935fcfabe8.etc.rpc.rivet.cloud/", + "NetworkPath": "geth-at.etc-network.info", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3888,19 +3860,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.1022566", + "TimeSpan": "00:00:01.0998200", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:56.041377Z" + "Item2": "2024-02-19T10:58:06.432641Z" } ] } }, { "ServerInfo": { - "NetworkPath": "besu-de.etc-network.info", + "NetworkPath": "0bfa2710a4fd4a2fba9b73935fcfabe8.etc.rpc.rivet.cloud/", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3913,19 +3885,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.2586883", + "TimeSpan": "00:00:01.2702168", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.597427Z" + "Item2": "2024-02-19T10:58:05.311859Z" } ] } }, { "ServerInfo": { - "NetworkPath": "rpc.etcinscribe.com", + "NetworkPath": "besu-at.etc-network.info", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3938,19 +3910,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.3898152", + "TimeSpan": "00:00:01.2852321", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:23:01.108053Z" + "Item2": "2024-02-19T10:58:05.326886Z" } ] } }, { "ServerInfo": { - "NetworkPath": "geth-at.etc-network.info", + "NetworkPath": "etc.etcdesktop.com", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3963,19 +3935,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.4814231", + "TimeSpan": "00:00:01.3064724", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.890177Z" + "Item2": "2024-02-19T10:58:06.418994Z" } ] } }, { "ServerInfo": { - "NetworkPath": "besu-at.etc-network.info", + "NetworkPath": "etc.mytokenpocket.vip", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -3988,19 +3960,19 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.4984524", + "TimeSpan": "00:00:01.3186241", "Status": { "Case": "Success" } }, - "Item2": "2024-02-02T05:22:54.912366Z" + "Item2": "2024-02-19T10:58:06.360464Z" } ] } }, { "ServerInfo": { - "NetworkPath": "etc.etcdesktop.com", + "NetworkPath": "ethercluster.com/etc", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4013,19 +3985,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:01.5778562", + "TimeSpan": "00:00:00.0025847", "Status": { - "Case": "Success" + "Case": "Fault", + "Fields": [ + { + "Exception": { + "TypeFullName": "GWallet.Backend.ServerUnreachableException", + "Message": "Could not communicate with EtherServer" + }, + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2023-06-21T05:31:26.4714313Z" + ] + } + } + ] } }, - "Item2": "2024-02-02T05:22:55.024404Z" + "Item2": "2024-02-19T10:58:06.023869Z" } ] } }, { "ServerInfo": { - "NetworkPath": "ethercluster.com/rivet", + "NetworkPath": "etc.mytokenpocket.vipp", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4038,7 +4024,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0027729", + "TimeSpan": "00:00:00.0022978", "Status": { "Case": "Fault", "Fields": [ @@ -4047,17 +4033,12 @@ "TypeFullName": "GWallet.Backend.ServerUnreachableException", "Message": "Could not communicate with EtherServer" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2022-10-29T05:58:05.792451Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:01.176633Z" + "Item2": "2024-02-19T10:58:05.372376Z" } ] } @@ -4077,7 +4058,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0040102", + "TimeSpan": "00:00:00.0100031", "Status": { "Case": "Fault", "Fields": [ @@ -4096,7 +4077,7 @@ ] } }, - "Item2": "2024-02-02T05:22:55.731962Z" + "Item2": "2024-02-19T10:58:05.799711Z" } ] } @@ -4116,7 +4097,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0370435", + "TimeSpan": "00:00:00.0339011", "Status": { "Case": "Fault", "Fields": [ @@ -4130,7 +4111,7 @@ ] } }, - "Item2": "2024-02-02T05:23:01.160472Z" + "Item2": "2024-02-19T10:58:05.751619Z" } ] } @@ -4150,7 +4131,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0812171", + "TimeSpan": "00:00:00.0554192", "Status": { "Case": "Fault", "Fields": [ @@ -4164,14 +4145,14 @@ ] } }, - "Item2": "2024-02-02T05:22:56.140131Z" + "Item2": "2024-02-19T10:58:05.458265Z" } ] } }, { "ServerInfo": { - "NetworkPath": "web3.gastracker.io", + "NetworkPath": "ethercluster.com/rivet", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4184,7 +4165,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.0934758", + "TimeSpan": "00:00:00.0784750", "Status": { "Case": "Fault", "Fields": [ @@ -4193,19 +4174,24 @@ "TypeFullName": "GWallet.Backend.ServerUnreachableException", "Message": "Could not communicate with EtherServer" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2022-10-29T05:58:05.792451Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:22:59.566537Z" + "Item2": "2024-02-19T10:58:06.003091Z" } ] } }, { "ServerInfo": { - "NetworkPath": "etc.mytokenpocket.vipp", + "NetworkPath": "web3.gastracker.io", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4218,7 +4204,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1176921", + "TimeSpan": "00:00:00.0820549", "Status": { "Case": "Fault", "Fields": [ @@ -4232,14 +4218,14 @@ ] } }, - "Item2": "2024-02-02T05:22:59.699024Z" + "Item2": "2024-02-19T10:58:05.907994Z" } ] } }, { "ServerInfo": { - "NetworkPath": "www.ethercluster.com/etc", + "NetworkPath": "indra.etcstatechannel.com/api", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4252,7 +4238,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1459255", + "TimeSpan": "00:00:00.1827215", "Status": { "Case": "Fault", "Fields": [ @@ -4264,21 +4250,21 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2022-10-29T05:58:05.837682Z" + "2020-06-10T16:38:57.291599Z" ] } } ] } }, - "Item2": "2024-02-02T05:22:55.713133Z" + "Item2": "2024-02-19T10:58:06.562761Z" } ] } }, { "ServerInfo": { - "NetworkPath": "indra.etcstatechannel.com/api", + "NetworkPath": "www.ethercluster.com/etc", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4291,7 +4277,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.1896295", + "TimeSpan": "00:00:00.2222125", "Status": { "Case": "Fault", "Fields": [ @@ -4303,21 +4289,21 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2020-06-10T16:38:57.291599Z" + "2022-10-29T05:58:05.837682Z" ] } } ] } }, - "Item2": "2024-02-02T05:22:55.925722Z" + "Item2": "2024-02-19T10:58:05.700888Z" } ] } }, { "ServerInfo": { - "NetworkPath": "mew.epool.io", + "NetworkPath": "mewapi.epool.io", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4330,7 +4316,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.2599805", + "TimeSpan": "00:00:00.2321374", "Status": { "Case": "Fault", "Fields": [ @@ -4344,14 +4330,14 @@ ] } }, - "Item2": "2024-02-02T05:22:57.361364Z" + "Item2": "2024-02-19T10:58:07.083933Z" } ] } }, { "ServerInfo": { - "NetworkPath": "cry.epool.io", + "NetworkPath": "mew.epool.io", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4364,7 +4350,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.2683614", + "TimeSpan": "00:00:00.2397839", "Status": { "Case": "Fault", "Fields": [ @@ -4378,14 +4364,14 @@ ] } }, - "Item2": "2024-02-02T05:22:57.083016Z" + "Item2": "2024-02-19T10:58:06.823061Z" } ] } }, { "ServerInfo": { - "NetworkPath": "mewapi.epool.io", + "NetworkPath": "cry.epool.io", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4398,7 +4384,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.3540518", + "TimeSpan": "00:00:00.2887039", "Status": { "Case": "Fault", "Fields": [ @@ -4412,14 +4398,14 @@ ] } }, - "Item2": "2024-02-02T05:22:56.528128Z" + "Item2": "2024-02-19T10:58:06.326192Z" } ] } }, { "ServerInfo": { - "NetworkPath": "ethercluster.com/etc", + "NetworkPath": "etc-geth.0xinfra.com", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4432,33 +4418,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.4946562", + "TimeSpan": "00:00:00.4330744", "Status": { "Case": "Fault", "Fields": [ { "Exception": { "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "Could not communicate with EtherServer" + "Message": "Could not communicate with EtherServer (CfErr: OriginError)" }, "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2023-06-21T05:31:26.4714313Z" + "2019-08-22T17:48:03.6989Z" ] } } ] } }, - "Item2": "2024-02-02T05:22:55.540137Z" + "Item2": "2024-02-19T10:58:06.881558Z" } ] } }, { "ServerInfo": { - "NetworkPath": "etc-geth.0xinfra.com", + "NetworkPath": "etc-parity.0xinfra.com", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4471,7 +4457,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.5086338", + "TimeSpan": "00:00:00.6058797", "Status": { "Case": "Fault", "Fields": [ @@ -4483,14 +4469,14 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2019-08-22T17:48:03.6989Z" + "2019-08-22T17:48:03.858896Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:01.700381Z" + "Item2": "2024-02-19T10:58:06.949097Z" } ] } @@ -4510,7 +4496,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.8243126", + "TimeSpan": "00:00:00.7985580", "Status": { "Case": "Fault", "Fields": [ @@ -4529,14 +4515,14 @@ ] } }, - "Item2": "2024-02-02T05:23:02.537368Z" + "Item2": "2024-02-19T10:58:07.239254Z" } ] } }, { "ServerInfo": { - "NetworkPath": "etc-parity.0xinfra.com", + "NetworkPath": "00bfa2710a4fd4a2fba9b73935fcfabe8.etc.rpc.rivet.cloud/", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4549,33 +4535,28 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:00.8557636", + "TimeSpan": "00:00:01.2415221", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerUnreachableException", - "Message": "Could not communicate with EtherServer (CfErr: OriginError)" + "TypeFullName": "GWallet.Backend.ServerMisconfiguredException", + "Message": "Could not communicate with EtherServer (HttpErr: BadRequest)" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2019-08-22T17:48:03.858896Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:22:56.801816Z" + "Item2": "2024-02-19T10:58:08.157498Z" } ] } }, { "ServerInfo": { - "NetworkPath": "00bfa2710a4fd4a2fba9b73935fcfabe8.etc.rpc.rivet.cloud/", + "NetworkPath": "rpc.etcinscribe.com", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4588,28 +4569,33 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:02.0796203", + "TimeSpan": "00:00:01.3371187", "Status": { "Case": "Fault", "Fields": [ { "Exception": { - "TypeFullName": "GWallet.Backend.ServerMisconfiguredException", - "Message": "Could not communicate with EtherServer (HttpErr: BadRequest)" + "TypeFullName": "GWallet.Backend.ProtocolGlitchException", + "Message": "The remote certificate is invalid because of errors in the certificate chain: NotTimeValid" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2024-02-10T12:16:41.15066Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:22:59.455974Z" + "Item2": "2024-02-19T10:58:08.300307Z" } ] } }, { "ServerInfo": { - "NetworkPath": "etc-parity.callisto.network", + "NetworkPath": "ethereumclassic.network", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4622,7 +4608,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:30.0006433", + "TimeSpan": "00:00:30.0049905", "Status": { "Case": "Fault", "Fields": [ @@ -4631,19 +4617,24 @@ "TypeFullName": "GWallet.Backend.ServerTimedOutException", "Message": "Timeout when trying to communicate with Ether server" }, - "LastSuccessfulCommunication": null + "LastSuccessfulCommunication": { + "Case": "Some", + "Fields": [ + "2019-08-22T17:48:04.401747Z" + ] + } } ] } }, - "Item2": "2024-02-02T05:23:26.541629Z" + "Item2": "2024-02-19T10:58:37.257756Z" } ] } }, { "ServerInfo": { - "NetworkPath": "ethereumclassic.network", + "NetworkPath": "www.ethereumclassic.network", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4656,7 +4647,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:30.0019972", + "TimeSpan": "00:00:30.0052449", "Status": { "Case": "Fault", "Fields": [ @@ -4668,21 +4659,21 @@ "LastSuccessfulCommunication": { "Case": "Some", "Fields": [ - "2019-08-22T17:48:04.401747Z" + "2020-03-25T06:43:58.227224Z" ] } } ] } }, - "Item2": "2024-02-02T05:23:25.794528Z" + "Item2": "2024-02-19T10:58:37.100138Z" } ] } }, { "ServerInfo": { - "NetworkPath": "www.ethereumclassic.network", + "NetworkPath": "etc-parity.callisto.network", "ConnectionType": { "Encrypted": true, "Protocol": { @@ -4695,7 +4686,7 @@ "Fields": [ { "Item1": { - "TimeSpan": "00:00:30.0053422", + "TimeSpan": "00:00:30.0057244", "Status": { "Case": "Fault", "Fields": [ @@ -4704,17 +4695,12 @@ "TypeFullName": "GWallet.Backend.ServerTimedOutException", "Message": "Timeout when trying to communicate with Ether server" }, - "LastSuccessfulCommunication": { - "Case": "Some", - "Fields": [ - "2020-03-25T06:43:58.227224Z" - ] - } + "LastSuccessfulCommunication": null } ] } }, - "Item2": "2024-02-02T05:23:25.751969Z" + "Item2": "2024-02-19T10:58:38.177072Z" } ] } From 5561415dce2d6366763d9c12744a124ee4fd2292 Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Mon, 19 Feb 2024 18:58:58 +0800 Subject: [PATCH 4/5] Bump version: 0.6.431.0 -> 0.6.432.0 --- snap/snapcraft.yaml | 2 +- src/GWallet.Backend/GWallet.Backend.fsproj | 6 +++--- src/GWallet.Backend/Properties/CommonAssemblyInfo.fs | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 5272c5f12..30fa03362 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ name: gwallet base: core22 # the base snap is the execution environment for this snap -version: '0.6.431.0' # just for humans, typically '1.2+git' or '1.3.2' +version: '0.6.432.0' # just for humans, typically '1.2+git' or '1.3.2' summary: minimalistic cryptocurrency brainwallet # 79 char long summary description: | Non-custodial, minimalistic and pragmatist opensource crossplatform diff --git a/src/GWallet.Backend/GWallet.Backend.fsproj b/src/GWallet.Backend/GWallet.Backend.fsproj index 086d3e87a..b90b0d241 100644 --- a/src/GWallet.Backend/GWallet.Backend.fsproj +++ b/src/GWallet.Backend/GWallet.Backend.fsproj @@ -6,9 +6,9 @@ - 0.6.431.0 - 0.6.431.0 - 0.6.431.0 + 0.6.432.0 + 0.6.432.0 + 0.6.432.0 diff --git a/src/GWallet.Backend/Properties/CommonAssemblyInfo.fs b/src/GWallet.Backend/Properties/CommonAssemblyInfo.fs index e858f0dac..e1e5b21de 100644 --- a/src/GWallet.Backend/Properties/CommonAssemblyInfo.fs +++ b/src/GWallet.Backend/Properties/CommonAssemblyInfo.fs @@ -18,11 +18,11 @@ open System.Reflection // by using the '*' as shown below: // [] -[] -[] +[] +[] // this one below maps to Product Version in theory -[] +[] do () From 6d42a93788406efa986d0648c38bbf06a48e3711 Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Mon, 19 Feb 2024 18:59:15 +0800 Subject: [PATCH 5/5] (Post)Bump version: 0.6.432.0 -> 0.6.433.0 --- snap/snapcraft.yaml | 2 +- src/GWallet.Backend/GWallet.Backend.fsproj | 6 +++--- src/GWallet.Backend/Properties/CommonAssemblyInfo.fs | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 30fa03362..00f4767ca 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ name: gwallet base: core22 # the base snap is the execution environment for this snap -version: '0.6.432.0' # just for humans, typically '1.2+git' or '1.3.2' +version: '0.6.433.0' # just for humans, typically '1.2+git' or '1.3.2' summary: minimalistic cryptocurrency brainwallet # 79 char long summary description: | Non-custodial, minimalistic and pragmatist opensource crossplatform diff --git a/src/GWallet.Backend/GWallet.Backend.fsproj b/src/GWallet.Backend/GWallet.Backend.fsproj index b90b0d241..73b916842 100644 --- a/src/GWallet.Backend/GWallet.Backend.fsproj +++ b/src/GWallet.Backend/GWallet.Backend.fsproj @@ -6,9 +6,9 @@ - 0.6.432.0 - 0.6.432.0 - 0.6.432.0 + 0.6.433.0 + 0.6.433.0 + 0.6.433.0 diff --git a/src/GWallet.Backend/Properties/CommonAssemblyInfo.fs b/src/GWallet.Backend/Properties/CommonAssemblyInfo.fs index e1e5b21de..91f95f149 100644 --- a/src/GWallet.Backend/Properties/CommonAssemblyInfo.fs +++ b/src/GWallet.Backend/Properties/CommonAssemblyInfo.fs @@ -18,11 +18,11 @@ open System.Reflection // by using the '*' as shown below: // [] -[] -[] +[] +[] // this one below maps to Product Version in theory -[] +[] do ()