PalacePal/Pal.Client/Configuration/ConfigurationData.cs

11 lines
270 B
C#
Raw Normal View History

2023-02-15 12:00:00 +00:00
using System;
namespace Pal.Client.Configuration
2023-02-15 01:38:04 +00:00
{
internal static class ConfigurationData
{
2023-02-15 12:00:00 +00:00
[Obsolete("for V1 import")]
internal static readonly byte[] FixedV1Entropy = { 0x22, 0x4b, 0xe7, 0x21, 0x44, 0x83, 0x69, 0x55, 0x80, 0x38 };
2023-02-15 01:38:04 +00:00
}
}