Ejemplo n.º 1
0
        public MainWindow()
        {
            try
            {
                //TODO
                //MainnetRules.BypassValidation = true;
                //MainnetRules.BypassExecuteScript = true;
                ScriptEngine.BypassVerifySignature = true;

#if SQLITE
                var storageContext = new SQLiteStorageContext();
                var knownAddressStorage = new BitSharp.Storage.SQLite.KnownAddressStorage(storageContext);
                this.storageContext = storageContext;
#elif FIREBIRD
                var storageContext = new FirebirdStorageContext();
                var knownAddressStorage = new BitSharp.Storage.Firebird.KnownAddressStorage(storageContext);
                this.storageContext = storageContext;
#elif SQL_SERVER
                var storageContext = new SqlServerStorageContext();
                var knownAddressStorage = new BitSharp.Storage.SqlServer.KnownAddressStorage(storageContext);
                this.storageContext = storageContext;
#endif

                this.cacheContext = new CacheContext(this.storageContext);
                this.rules = new MainnetRules(this.cacheContext);
                this.blockchainDaemon = new BlockchainDaemon(this.rules, this.cacheContext);
                this.localClient = new LocalClient(LocalClientType.MainNet, this.blockchainDaemon, knownAddressStorage);

                // setup view model
                this.viewModel = new MainWindowViewModel(this.blockchainDaemon);

                InitializeComponent();

                // start the blockchain daemon
                this.blockchainDaemon.Start();

                this.viewModel.ViewBlockchainLast();

                // start p2p client
                this.localClient.Start();

                this.DataContext = this.viewModel;
            }
            catch (Exception e)
            {
                Debug.WriteLine(e);
                throw;
            }
        }
Ejemplo n.º 2
0
 public KnownAddressStorage(SqlServerStorageContext storageContext)
     : base(storageContext)
 {
 }
Ejemplo n.º 3
0
 public BlockchainStorage(SqlServerStorageContext storageContext)
 {
     this.dbFolderPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), @"BitSharp");
     this._storageContext = storageContext;
 }
Ejemplo n.º 4
0
 public BlockHeaderStorage(SqlServerStorageContext storageContext)
     : base(storageContext)
 {
 }
Ejemplo n.º 5
0
 public BlockTransactionsStorage(SqlServerStorageContext storageContext)
     : base(storageContext)
 {
 }
Ejemplo n.º 6
0
 public BlockHeaderStorage(SqlServerStorageContext storageContext)
     : base(storageContext)
 {
 }
Ejemplo n.º 7
0
 public BlockTransactionsStorage(SqlServerStorageContext storageContext)
     : base(storageContext)
 {
 }
Ejemplo n.º 8
0
 public BlockchainStorage(SqlServerStorageContext storageContext)
 {
     this.dbFolderPath    = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), @"BitSharp");
     this._storageContext = storageContext;
 }
Ejemplo n.º 9
0
 public ChainedBlockStorage(SqlServerStorageContext storageContext)
     : base(storageContext)
 {
 }
Ejemplo n.º 10
0
 public SqlDataStorage(SqlServerStorageContext storageContext)
 {
     this._storageContext = storageContext;
     this.connString      = @"Server=localhost; Database=BitSharp; Trusted_Connection=true;";
 }
Ejemplo n.º 11
0
 public ChainedBlockStorage(SqlServerStorageContext storageContext)
     : base(storageContext)
 {
 }