This commit is contained in:
fosse 2023-08-17 20:09:20 -04:00
parent d44f674247
commit 77edc71362
2 changed files with 3 additions and 2 deletions

View file

@ -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;

View file

@ -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;