From 58adc8b9ae2cd4ca48ce2ed1300c17f6023711c9 Mon Sep 17 00:00:00 2001 From: Kieran Date: Mon, 10 Jul 2023 16:29:34 +0100 Subject: [PATCH] Set init balance to 1k --- NostrStreamer/Controllers/NostrController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NostrStreamer/Controllers/NostrController.cs b/NostrStreamer/Controllers/NostrController.cs index c74efb8..21faa7d 100644 --- a/NostrStreamer/Controllers/NostrController.cs +++ b/NostrStreamer/Controllers/NostrController.cs @@ -39,7 +39,7 @@ public class NostrController : Controller user = new() { PubKey = pk, - Balance = 0, + Balance = 1000, StreamKey = Guid.NewGuid().ToString() };