// [TestMethod]
 public void HistoryLoaderTest()
 {
     const string history = @"Z:\windowsshare\history.bin";
     if (!File.Exists(history)) return;
     var loader = new HistoryLoader(StReader.FromFile(history));
     loader.ParseFast((header, state, txns) => true);
 }
        public void HistoryLoaderTest()
        {
            const string history = @"Z:\windowsshare\history.bin";

            if (!File.Exists(history))
            {
                return;
            }
            var loader = new HistoryLoader(StReader.FromFile(history));

            loader.ParseFast((header, state, txns) => true);
        }