Chore: Fix default values (#4960)

This commit is contained in:
Cuteivist 2024-03-21 23:19:39 +01:00 committed by GitHub
parent c7e7445f5c
commit 296b44f9ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 26 additions and 31 deletions

View File

@ -93,8 +93,6 @@ func defaultSettings(generatedAccountInfo generator.GeneratedAccountInfo, derive
s.TokenGroupByCommunity = false s.TokenGroupByCommunity = false
s.ShowCommunityAssetWhenSendingTokens = true s.ShowCommunityAssetWhenSendingTokens = true
s.DisplayAssetsBelowBalance = false s.DisplayAssetsBelowBalance = false
// NOTE 9 decimals of precision. Default value is translated to 0.1
s.DisplayAssetsBelowBalanceThreshold = 100000000
return s, nil return s, nil
} }

View File

@ -145,14 +145,11 @@ INSERT INTO settings (
omit_transfers_history_scan, omit_transfers_history_scan,
mnemonic_was_not_shown, mnemonic_was_not_shown,
wallet_token_preferences_group_by_community, wallet_token_preferences_group_by_community,
wallet_show_community_asset_when_sending_tokens,
wallet_display_assets_below_balance,
wallet_display_assets_below_balance_threshold,
wallet_collectible_preferences_group_by_collection, wallet_collectible_preferences_group_by_collection,
wallet_collectible_preferences_group_by_community wallet_collectible_preferences_group_by_community
) VALUES ( ) VALUES (
?,?,?,?,?,?,?,?,?,?,?,?,?,?, ?,?,?,?,?,?,?,?,?,?,?,?,?,?,
?,?,?,?,?,?,?,?,?,'id',?,?,?,?,?,?,?,?,?,?,?,?)`, ?,?,?,?,?,?,?,?,?,'id',?,?,?,?,?,?,?,?,?)`,
s.Address, s.Address,
s.Currency, s.Currency,
s.CurrentNetwork, s.CurrentNetwork,
@ -183,9 +180,6 @@ INSERT INTO settings (
s.OmitTransfersHistoryScan, s.OmitTransfersHistoryScan,
s.MnemonicWasNotShown, s.MnemonicWasNotShown,
s.TokenGroupByCommunity, s.TokenGroupByCommunity,
s.ShowCommunityAssetWhenSendingTokens,
s.DisplayAssetsBelowBalance,
s.DisplayAssetsBelowBalanceThreshold,
s.CollectibleGroupByCollection, s.CollectibleGroupByCollection,
s.CollectibleGroupByCommunity, s.CollectibleGroupByCommunity,
) )

View File

@ -23,28 +23,31 @@ var (
networks = json.RawMessage("{}") networks = json.RawMessage("{}")
settings = Settings{ settings = Settings{
Address: types.HexToAddress("0xdC540f3745Ff2964AFC1171a5A0DD726d1F6B472"), Address: types.HexToAddress("0xdC540f3745Ff2964AFC1171a5A0DD726d1F6B472"),
AnonMetricsShouldSend: false, AnonMetricsShouldSend: false,
CurrentNetwork: "mainnet_rpc", CurrentNetwork: "mainnet_rpc",
DappsAddress: types.HexToAddress("0xD1300f99fDF7346986CbC766903245087394ecd0"), DappsAddress: types.HexToAddress("0xD1300f99fDF7346986CbC766903245087394ecd0"),
InstallationID: "d3efcff6-cffa-560e-a547-21d3858cbc51", InstallationID: "d3efcff6-cffa-560e-a547-21d3858cbc51",
KeyUID: "0x4e8129f3edfc004875be17bf468a784098a9f69b53c095be1f52deff286935ab", KeyUID: "0x4e8129f3edfc004875be17bf468a784098a9f69b53c095be1f52deff286935ab",
BackupEnabled: true, BackupEnabled: true,
LatestDerivedPath: 0, LatestDerivedPath: 0,
Name: "Jittery Cornflowerblue Kingbird", Name: "Jittery Cornflowerblue Kingbird",
Networks: &networks, Networks: &networks,
PhotoPath: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAAjklEQVR4nOzXwQmFMBAAUZXUYh32ZB32ZB02sxYQQSZGsod55/91WFgSS0RM+SyjA56ZRZhFmEWYRRT6h+M6G16zrxv6fdJpmUWYRbxsYr13dKfanpN0WmYRZhGzXz6AWYRZRIfbaX26fT9Jk07LLMIsosPt9I/dTDotswizCG+nhFmEWYRZhFnEHQAA///z1CFkYamgfQAAAABJRU5ErkJggg==", PhotoPath: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAAjklEQVR4nOzXwQmFMBAAUZXUYh32ZB32ZB02sxYQQSZGsod55/91WFgSS0RM+SyjA56ZRZhFmEWYRRT6h+M6G16zrxv6fdJpmUWYRbxsYr13dKfanpN0WmYRZhGzXz6AWYRZRIfbaX26fT9Jk07LLMIsosPt9I/dTDotswizCG+nhFmEWYRZhFnEHQAA///z1CFkYamgfQAAAABJRU5ErkJggg==",
PreviewPrivacy: false, PreviewPrivacy: false,
PublicKey: "0x04211fe0f69772ecf7eb0b5bfc7678672508a9fb01f2d699096f0d59ef7fe1a0cb1e648a80190db1c0f5f088872444d846f2956d0bd84069f3f9f69335af852ac0", PublicKey: "0x04211fe0f69772ecf7eb0b5bfc7678672508a9fb01f2d699096f0d59ef7fe1a0cb1e648a80190db1c0f5f088872444d846f2956d0bd84069f3f9f69335af852ac0",
SigningPhrase: "yurt joey vibe", SigningPhrase: "yurt joey vibe",
SendPushNotifications: true, SendPushNotifications: true,
ProfilePicturesShowTo: ProfilePicturesShowToContactsOnly, ProfilePicturesShowTo: ProfilePicturesShowToContactsOnly,
ProfilePicturesVisibility: ProfilePicturesVisibilityContactsOnly, ProfilePicturesVisibility: ProfilePicturesVisibilityContactsOnly,
DefaultSyncPeriod: 777600, DefaultSyncPeriod: 777600,
UseMailservers: true, UseMailservers: true,
LinkPreviewRequestEnabled: true, LinkPreviewRequestEnabled: true,
SendStatusUpdates: true, SendStatusUpdates: true,
WalletRootAddress: types.HexToAddress("0x3B591fd819F86D0A6a2EF2Bcb94f77807a7De1a6")} WalletRootAddress: types.HexToAddress("0x3B591fd819F86D0A6a2EF2Bcb94f77807a7De1a6"),
DisplayAssetsBelowBalanceThreshold: int64(100000000),
DisplayAssetsBelowBalance: false,
ShowCommunityAssetWhenSendingTokens: true}
) )
func setupTestDB(t *testing.T) (*Database, func()) { func setupTestDB(t *testing.T) (*Database, func()) {