Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Neo/NeoSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public NeoSystem(ProtocolSettings settings, IStoreProvider storageProvider, stri
TxRouter = ActorSystem.ActorOf(TransactionRouter.Props(this));
foreach (var plugin in Plugin.Plugins)
plugin.OnSystemLoaded(this);
Blockchain.Ask(new Blockchain.Initialize()).Wait();
Blockchain.Ask(new Blockchain.Initialize()).GetAwaiter().GetResult();
}

/// <summary>
Expand Down