mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
linting
This commit is contained in:
parent
903e034b58
commit
ad15f4d126
1 changed files with 7 additions and 9 deletions
|
@ -70,15 +70,13 @@ class _NodeDetailsViewState extends ConsumerState<NodeDetailsView> {
|
||||||
switch (coin) {
|
switch (coin) {
|
||||||
case Coin.epicCash:
|
case Coin.epicCash:
|
||||||
try {
|
try {
|
||||||
|
testPassed = await testEpicNodeConnection(
|
||||||
testPassed = await testEpicNodeConnection(
|
NodeFormData()
|
||||||
NodeFormData()
|
..host = node!.host
|
||||||
..host = node!.host
|
..useSSL = node.useSSL
|
||||||
..useSSL = node.useSSL
|
..port = node.port,
|
||||||
..port = node.port,
|
) !=
|
||||||
) !=
|
null;
|
||||||
null;
|
|
||||||
|
|
||||||
} catch (e, s) {
|
} catch (e, s) {
|
||||||
Logging.instance.log("$e\n$s", level: LogLevel.Warning);
|
Logging.instance.log("$e\n$s", level: LogLevel.Warning);
|
||||||
testPassed = false;
|
testPassed = false;
|
||||||
|
|
Loading…
Reference in a new issue