From 6749bc2f0642736f68297cafe5a1a11ba69af1f0 Mon Sep 17 00:00:00 2001 From: Josh Babb Date: Thu, 25 May 2023 11:29:46 -0500 Subject: [PATCH] change exception message :) --- lib/electrumx_rpc/rpc2.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/electrumx_rpc/rpc2.dart b/lib/electrumx_rpc/rpc2.dart index 4f407dbbb..7bb382566 100644 --- a/lib/electrumx_rpc/rpc2.dart +++ b/lib/electrumx_rpc/rpc2.dart @@ -67,7 +67,7 @@ class JsonRPC { void _sendNextAvailableRequest() { if (_requestQueue.isEmpty) { // TODO handle properly - throw Exception("reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"); + throw Exception("JSON RPC queue empty"); } final req = _requestQueue.next;