mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-12 09:32:33 +00:00
fix
This commit is contained in:
parent
d44f674247
commit
77edc71362
2 changed files with 3 additions and 2 deletions
|
@ -13,3 +13,4 @@ const DERIVATION_TYPE_TYPE_ID = 15;
|
|||
|
||||
const ERC20_TOKEN_TYPE_ID = 12;
|
||||
const NANO_ACCOUNT_TYPE_ID = 13;
|
||||
const POW_NODE_TYPE_ID = 14;
|
||||
|
|
|
@ -38,8 +38,8 @@ class PowNode extends HiveObject with Keyable {
|
|||
trusted = map['trusted'] as bool? ?? false,
|
||||
socksProxyAddress = map['socksProxyPort'] as String?;
|
||||
|
||||
static const typeId = NODE_TYPE_ID;
|
||||
static const boxName = 'Nodes';
|
||||
static const typeId = POW_NODE_TYPE_ID;
|
||||
static const boxName = 'PowNodes';
|
||||
|
||||
@HiveField(0, defaultValue: '')
|
||||
late String uriRaw;
|
||||
|
|
Loading…
Reference in a new issue