Post
Topic
Board Hardware
Re: Official Open Source FPGA Bitcoin Miner (Smaller Devices Now Supported!)
by
TheSeven
on 23/06/2011, 11:30:55 UTC
to TheSeven
Thank's for this implementation.
I get your project from https://github.com/progranism/Open-Source-FPGA-Bitcoin-Miner/tree/0a9077e5c070e0a601981c6ec42dfc946fe3ccd6/projects/VHDL_Xilinx_Port
VHDL synthesized well, but an error got when run miner.py:

Code:
root@debian:/home/user2/d# python miner.py
Traceback (most recent call last):
  File "miner.py", line 478, in
    curses.wrapper(miner.run)
  File "/usr/local/lib/python2.7/curses/wrapper.py", line 43, in wrapper
    return func(stdscr, *args, **kwds)
  File "miner.py", line 380, in run
    self.showstats()
  File "miner.py", line 290, in showstats
    self.statuswin.vline(4, x, curses.ACS_VLINE, my - 5)
_curses.error: wmove() returned ERR

What it means?
I run it on Debian 6.0, Python 2.7.2

 

it has some thing to do with curses.
try a different terminal maybe, i don't know.

Yes, it's a curses error, most likely being caused by the terminal window being too small to draw the summary box at the top.
Depending on the length of your pool names the current version will need around 120 chars of width, the older one in the git repository maybe a bit less.