mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-23 07:38:49 +00:00
json encoding fix
This commit is contained in:
parent
7282e28eaf
commit
2562305d7c
1 changed files with 2 additions and 2 deletions
|
@ -54,12 +54,12 @@ class FusionInfo {
|
||||||
}
|
}
|
||||||
|
|
||||||
String toJsonString() {
|
String toJsonString() {
|
||||||
return {
|
return jsonEncode({
|
||||||
'host': host,
|
'host': host,
|
||||||
'port': port,
|
'port': port,
|
||||||
'ssl': ssl,
|
'ssl': ssl,
|
||||||
'rounds': rounds,
|
'rounds': rounds,
|
||||||
}.toString();
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
Loading…
Reference in a new issue