Pages:
Author

Topic: [ANN][XMY] Myriad | Multi-Algo, Fair, Secure - page 36. (Read 849993 times)

legendary
Activity: 3164
Merit: 1116
Thanks for posting your .conf file. I tried the same configuration and got the same error message. When I first start the cc miner I get the message "no payout address specified, switching to getwork.

Does that have anything to do with this?

Yes, possibly. I would mine by running a local p2pool node. The wallet doesn't support getwork anymore (modernish bitcoin-based codebases don't support it, only getblocktemplate), I don't think, so you can't solomine with a lot of cg/sg/ccminer builds. You either need to find a miner that supports getblocktemplate, or run stratum proxy or something like a pool (p2pool) that can act as an intermediary to provide your miner with getwork.
member
Activity: 102
Merit: 10
Thanks for posting your .conf file. I tried the same configuration and got the same error message. When I first start the cc miner I get the message "no payout address specified, switching to getwork.

Does that have anything to do with this?
legendary
Activity: 3164
Merit: 1116
I made the changes you specified, but unfortunately, I still get the "connection is refused" error message.

This is my .bat file for cc miner:
cpuminer-athlon64-64.exe -t 4 -o 192.168.1.23:10889 -O user:pas
pause

Is there anything else I can do to fix this?

EDIT:

I just realized that after making those changes to the wallet .conf, I get a different error message that reads:
HTTP request failed: The requested URL returned error 404

When I go into the browser and type in the local ip and port I get the following error:
{"result":null,"error":{"code":-32700,"message":"Parse error"},"id":null}

Hope this means I'm getting closer to fixing this.

Here is my conf file with user/pw starred out from before qubit got k-lined:
Code:
rpcuser=***
rpcpassword=***
server=1
rpcport=50554
algo=qubit
rpcallowip=127.0.0.1
rpcconnect=127.0.0.1
and I don't even think it needs rpcallowip or rpcconnect, pretty sure localhost is always ok.

To check if the wallet is listening properly on the port, if you have cygwin or msys installed you can do something like this with curl:
Code:
curl --data-binary '{"jsonrpc":"1.0","id":"curltext","method":"getinfo","params":[]}' -H 'content-type:text/plain;' http://username:[email protected]:50554
member
Activity: 102
Merit: 10
I made the changes you specified, but unfortunately, I still get the "connection is refused" error message.

This is my .bat file for cc miner:
cpuminer-athlon64-64.exe -t 4 -o 192.168.1.23:10889 -O user:pas
pause

Is there anything else I can do to fix this?

EDIT:

I just realized that after making those changes to the wallet .conf, I get a different error message that reads:
HTTP request failed: The requested URL returned error 404

When I go into the browser and type in the local ip and port I get the following error:
{"result":null,"error":{"code":-32700,"message":"Parse error"},"id":null}

Hope this means I'm getting closer to fixing this.
hero member
Activity: 750
Merit: 500
I don't think ccminer is connected to my wallet. I keep on getting this error: HTTP Request Failed: connection refused json_rpc_call failed.

Here is my wallet conf:

listen=1
rpcuser=user
rpcpassword=pas
server=1
P2P port:10888
RPC port:10889
listen=1
maxconnections=32
server=1
rpcallowip=192.168.1.23
rpcallowip=127.0.0.1
rpcallowip=*
addnode=85.195.118.163
algo=yescrypt
daemon=1

Does anyone know what could be wrong?

Edit# how can I tell that my wallet is listening on port 10889?

Invalid IP wildcard notation:
Code:
rpcallowip=*
remove that line or fix it using valid wildcard notation (the '*' wildcard character has been depreciated and is no longer valid, only subnet mask notions are valid now).


Invalid port/rpcport formatting:
Code:
P2P port:10888
RPC port:10889

Should read as follows:
Code:
port=10888
rpcport=10889

You also have listen and server listed twice for some reason. Basically what is happening is that the client is trying to parse your config file but is reaching invalid lines and discarding everything that follows the first invalid line.
member
Activity: 102
Merit: 10
I don't think ccminer is connected to my wallet. I keep on getting this error: HTTP Request Failed: connection refused json_rpc_call failed.

Here is my wallet conf:

listen=1
rpcuser=user
rpcpassword=pas
server=1
P2P port:10888
RPC port:10889
listen=1
maxconnections=32
server=1
rpcallowip=192.168.1.23
rpcallowip=127.0.0.1
rpcallowip=*
addnode=85.195.118.163
algo=yescrypt
daemon=1

Does anyone know what could be wrong?

Edit# how can I tell that my wallet is listening on port 10889?
legendary
Activity: 3164
Merit: 1116
Which of these algorithms have a low enough difficulty allowing you to do solo mine with your cpu? Or is it pretty much impossible to do that?

No, you can still solomine yescrypt with CPU. You'll probably get 0.25-3 blocks per day depending on your CPU. Yescrypt network hashrate atm is ~0.7 Mh/s, if your CPU cranks out ~1 kH/s you'll get 1 out of every 700 blocks, which would be a block every couple days.

Thanks for your help! I just downloaded the wallet and set up the yescrypt miner. I made a .bat file for solo mining. How can I tell that it's actually working and that I haven't made some kind of mistake in the .bat file?

Umm, you should have algo=yescrypt in your myriadcoin.con file I think, and if your miner is connecting then you should probably be good...
member
Activity: 102
Merit: 10
Which of these algorithms have a low enough difficulty allowing you to do solo mine with your cpu? Or is it pretty much impossible to do that?

No, you can still solomine yescrypt with CPU. You'll probably get 0.25-3 blocks per day depending on your CPU. Yescrypt network hashrate atm is ~0.7 Mh/s, if your CPU cranks out ~1 kH/s you'll get 1 out of every 700 blocks, which would be a block every couple days.

Thanks for your help! I just downloaded the wallet and set up the yescrypt miner. I made a .bat file for solo mining. How can I tell that it's actually working and that I haven't made some kind of mistake in the .bat file?
full member
Activity: 135
Merit: 100
Latest tip thread - https://redd.it/525hw5
legendary
Activity: 3164
Merit: 1116
Which of these algorithms have a low enough difficulty allowing you to do solo mine with your cpu? Or is it pretty much impossible to do that?

No, you can still solomine yescrypt with CPU. You'll probably get 0.25-3 blocks per day depending on your CPU. Yescrypt network hashrate atm is ~0.7 Mh/s, if your CPU cranks out ~1 kH/s you'll get 1 out of every 700 blocks, which would be a block every couple days.
member
Activity: 102
Merit: 10
Which of these algorithms have a low enough difficulty allowing you to do solo mine with your cpu? Or is it pretty much impossible to do that?
full member
Activity: 226
Merit: 100
@jwinterm thanks for your support :-)

Here is the situation of the pool after announcements:

    http://imgur.com/a/SMAtG

The hashrate and generated blocks have increased about 2x-3x, read more at:

    https://www.reddit.com/r/myriadcoin/comments/524h0g/new_pool_mine_myriadcoins_and_unitus_coins_with/d7i7pcx



Hello to all,

a new ]yescrypt pool for CPU miners is open!

We are currently in BETA phase for mining MyriadCoin (which mines also Unitus coin at same time).


The pool has NO FEES.

Instructions how to connect your CPU miner at bottom of that page:
  e.g. ./cpuminer -a yescrypt -o stratum+tcp://37.120.171.80:5534 -u YOUR_MYRIAD_ADDRESS -t YOUR_CPU_AMOUNT


You are also welcome to join us also in freenode irc: ##myriadcoin-mining (1).

See you,
Erkan


I'm mining here now. Everything working smoothly so far. Still need to get UIS payout setup, but nice to have some public pools that merge mine UIS Smiley
legendary
Activity: 1281
Merit: 1003
there is something i don't understand myr is only pow right no pos ?

because is have sometime a mined transaction ,i don't know where it come from

i m mining on a pool , no local mining

and anyway if local mining block are 500 right ?    so mined  transaction of 2.76420882  is not possible

29734d16ab0c41eeeaa7ff947ffd1d0e35e6a522f3367b44f3dc2466800290a5
legendary
Activity: 3164
Merit: 1116
Hello to all,

a new ]yescrypt pool for CPU miners is open!

We are currently in BETA phase for mining MyriadCoin (which mines also Unitus coin at same time).


The pool has NO FEES.

Instructions how to connect your CPU miner at bottom of that page:
  e.g. ./cpuminer -a yescrypt -o stratum+tcp://37.120.171.80:5534 -u YOUR_MYRIAD_ADDRESS -t YOUR_CPU_AMOUNT


You are also welcome to join us also in freenode irc: ##myriadcoin-mining (1).

See you,
Erkan


I'm mining here now. Everything working smoothly so far. Still need to get UIS payout setup, but nice to have some public pools that merge mine UIS Smiley
full member
Activity: 226
Merit: 100
Hello to all,

a new ]yescrypt pool for CPU miners is open!

We are currently in BETA phase for mining MyriadCoin (which mines also Unitus coin at same time).


The pool has NO FEES.

Instructions how to connect your CPU miner at bottom of that page:
  e.g. ./cpuminer -a yescrypt -o stratum+tcp://37.120.171.80:5534 -u YOUR_MYRIAD_ADDRESS -t YOUR_CPU_AMOUNT


You are also welcome to join us also in freenode irc: ##myriadcoin-mining (1).

See you,
Erkan
sr. member
Activity: 798
Merit: 251
MYR 1 day macd show big green cadles on polo  Roll Eyes Roll Eyes
I think I am buying in Cheesy
legendary
Activity: 3164
Merit: 1116
New version of myrminer GUI for yescrypt mining on Windows. This version includes a conf file that will store your settings (pool, address, and # of threads) when you restart the program, and also an Esperanto version by request of a community member.

English version here:
https://github.com/jwinterm/myrminer/releases/download/0.2/myrminer_v02.zip

Esperanto version here:
https://github.com/jwinterm/myrminer/releases/download/0.2/myrminer_esperanto_v02.zip
legendary
Activity: 1572
Merit: 1002
MYR added to cryptoguru.tk  Grin
http://cryptoguru.tk/index.php?Currency=MYR
Pages:
Jump to: