Browse Source

update for MMGen v13.3.dev14

The MMGen Project 1 year ago
parent
commit
c53e7cc65f
4 changed files with 4 additions and 4 deletions
  1. 1 1
      mmgen_node_tools/PeerBlocks.py
  2. 1 1
      mmgen_node_tools/PollDisplay.py
  3. 1 1
      mmgen_node_tools/data/version
  4. 1 1
      setup.cfg

+ 1 - 1
mmgen_node_tools/PeerBlocks.py

@@ -61,7 +61,7 @@ class Display(PollDisplay):
 		return await rpc.call('disconnectnode',addr)
 
 	def get_input(self):
-		s = get_char(immed_chars='q0123456789',prehold_protect=False,num_chars=1)
+		s = get_char(immed_chars='q0123456789',prehold_protect=False,num_bytes=1)
 		if not is_int(s):
 			return s
 		with self.info_lock:

+ 1 - 1
mmgen_node_tools/PollDisplay.py

@@ -27,7 +27,7 @@ class PollDisplay():
 		self.display_kill_flag = threading.Event()
 
 	def get_input(self):
-		return get_char(immed_chars='q',prehold_protect=False,num_chars=1)
+		return get_char(immed_chars='q',prehold_protect=False,num_bytes=1)
 
 	async def process_input(self,rpc):
 		return True

+ 1 - 1
mmgen_node_tools/data/version

@@ -1 +1 @@
-3.1.dev12
+3.1.dev13

+ 1 - 1
setup.cfg

@@ -23,7 +23,7 @@ python_requires = >=3.7
 include_package_data = True
 
 install_requires =
-	mmgen>=13.3.dev13
+	mmgen>=13.3.dev14
 
 packages =
 	mmgen_node_tools