Skip to content
Snippets Groups Projects
Commit cf950602 authored by rimesime's avatar rimesime
Browse files

adding missing constructor argument

parent 9953bacf
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ public class Wallet extends AbstractWallet {
final ActorSystem system = ActorSystem.create("FuCoin");
// Create the 'greeter' actor
final ActorRef greeter = system.actorOf(Props.create(Wallet.class), "wallet");
final ActorRef greeter = system.actorOf(Props.create(Wallet.class, "Hans Wurst"), "wallet");
// Create the "actor-in-a-box"
final Inbox inbox = Inbox.create(system);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment