mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
Merge pull request #669 from cake-tech/fix-nullable-node-field
[skip ci] fix issue with nullable field in Node adapter
This commit is contained in:
commit
8d42dd0306
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class Node extends HiveObject with Keyable {
|
|||
@HiveField(4)
|
||||
bool? useSSL;
|
||||
|
||||
@HiveField(5)
|
||||
@HiveField(5, defaultValue: false)
|
||||
bool trusted;
|
||||
|
||||
bool get isSSL => useSSL ?? false;
|
||||
|
|
Loading…
Reference in a new issue