File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1111
1212using Microsoft . Extensions . Configuration ;
1313using Neo . Network . P2P ;
14+ using Neo . Persistence ;
1415using System ;
1516using System . Threading ;
1617
@@ -77,13 +78,13 @@ public LoggerSettings(IConfigurationSection section)
7778
7879 public class StorageSettings
7980 {
80- public string Engine { get ; } = string . Empty ;
81+ public string Engine { get ; } = nameof ( MemoryStore ) ;
8182 public string Path { get ; } = string . Empty ;
8283
8384 public StorageSettings ( IConfigurationSection section )
8485 {
85- Engine = section . GetValue ( nameof ( Engine ) , "LevelDBStore" ) ! ;
86- Path = section . GetValue ( nameof ( Path ) , "Data_LevelDB_{0}" ) ! ;
86+ Engine = section . GetValue ( nameof ( Engine ) , nameof ( MemoryStore ) ) ! ;
87+ Path = section . GetValue ( nameof ( Path ) , string . Empty ) ! ;
8788 }
8889 }
8990
You can’t perform that action at this time.
0 commit comments