Pages:
Author

Topic: METAL MUSIC COIN V3 - A COIN FOR THE UNDERGROUND METAL MUSIC SCENE (Read 75244 times)

sr. member
Activity: 515
Merit: 250

   

is this coin still going ? i will add to my pools if you guys would like

all i need is some decent addnodes
newbie
Activity: 26
Merit: 0
The coin is alive thanks to dnp!
sr. member
Activity: 471
Merit: 252
hey guys i will be relaunching this coin through Rally. i will update you guys. cheers
dnp
full member
Activity: 401
Merit: 110
Quote
If you have updated coin sources, send us (https://yobit.net/en/maintenance_request/ Free) and we will promptly fix the problem with the coin.

i can see why they gave up running the old wallet/daemon code.

on my site running the explorer, i find the old wallet daemon just randomly likes to die after a while.

also, when starting up, both on my linux servers and windows7 machines it does not like to properly
finish starting up after (very slowly) reading all the blockfiles.
it just goes into a mood where it's trying to connect to peers but won't talk to the windows screen or answer RPC requests.

i discovered if i disabled the network interfaces just before it finishes (slowly) reading the blockfiles and
wait for the rest of the startup to finish then it works okay. then i get to re-enable my network interfaces.

perhaps it's just me Smiley

newbie
Activity: 26
Merit: 0
There are several exchanges with free listing. Need an update.



If you have updated coin sources, send us (https://yobit.net/en/maintenance_request/ Free) and we will promptly fix the problem with the coin.
Thank you for contacting support.

Sincerely,
Yobit Support.

[moderator's note: consecutive posts merged]
member
Activity: 1545
Merit: 23
Shorelinecrypto Exchange Shutdown Notice with Refund Details
11/14/2021


As we announced earlier on. the hacking event caused severe loss on exchange while users username or password were not hacked or leaked on that event. We now announce that ShorelineCrypto Exchange will completely shut down on Feb 26, 2022.

For those ShorelineCrypto Exchange members to obtain refund from your existing shorelinecrypto balance, please make sure that you do following steps before our shut down date or your remaining balance will be forfeited and will not be refunded past that shutdown date.

We have now re-started shorelinecrypto.com web page and all coins have disabled trading, but some coins have withdraw function enabled. You can login with your usual username/password to perform below steps to obtain refund.

To read full text for this closure and refund announcement, please read:

https://bitcointalksearch.org/topic/m.58435338

or discord announcement board:

https://discordapp.com/invite/jZMyhKm
newbie
Activity: 26
Merit: 0
900000 is a timer and can be increased or decreased.
newbie
Activity: 19
Merit: 0
@ Delley

Hi there,
I managed it ... I had to change / shorten my passphrase a little bit but it works now.

Thank you Delley
newbie
Activity: 26
Merit: 0
Console
walletpassphrase password 900000
newbie
Activity: 19
Merit: 0
Hi there,
I encrypted my Metalmusic wallet and wanted to decrypt it to mine (POS stake) but couldn't find a "button" to decrypt it.

Maybe someone can tell me how to do that?

thanks

Translated with Google
dnp
full member
Activity: 401
Merit: 110

Have you been able to get this compiled on  / for any modern linux system?

I just tried on Ubuntu 20.04 lts and 18.04 lts and both failed due to dependency messes. But, since I have compiled newer coins with them I don't know if it's the OS or other newer things I have installed. I thought I had a copy of the binary saved someplace but I can't find it.

Side thought, makes you wonder how much stuff like this kills older coins, I want to run it but there is an issue getting it compiled and there are no official linux binaries and for a bit of fun / playing around mining it's not worth putting in the extra time needed to do it so we go play with another coin.

-Dave

my slackware-current (post 14.2)
you need to specify -std=gnu++98 for the compiler (xCXXFLAGS), i modified this from src/makefile.unix
and you'll probably get a buttload of the same warnings over and over from the boost headers

even further sad thought, so called modern coins usually have doc files for building that are 10 years out of date.
it really is voodoo some days. i think most devs like the mysticism and their fifedoms.

i've never used a linux QT build for any coin (i think some of my coins may have built qt binaries accidently, i dont pay attention since i dont use (X)windowing. i'm a command line weenie all the way for my server.

Code:
#!/bin/bash
coinname="metalmusiccoin"
pcdversion=`/bin/basename "$PWD" | \
                /bin/sed -e "s,\.,,g" \
                        -e "s,MTLMC,metalcoind,"`
echo "pcdversion=${pcdversion} pwd=${PWD} coinname=${coinname}"
cd src
if [ "x${1}" = "x" ]; then
        rm -f obj/version.*
        OPENSSL_INCLUDE_PATH="/usr/include/openssl-1.0"
        OPENSSL_LIB_PATH="/usr/lib64/openssl-1.0"
        BOOST_INCLUDE_PATH="/usr/local/boost-1.59.0/include"
        BOOST_LIB_SUFFIX=
        BOOST_LIB_PATH="/usr/local/boost-1.59.0/lib"
        export OPENSSL_INCLUDE_PATH OPENSSL_LIB_PATH BOOST_INCLUDE_PATH BOOST_LIB_SUFFIX BOOST_LIB_PATH
        make -f makefile.g++98 USE_UPNP=-
        stat=$?
        exit $stat
elif [ "x${1}" = "x--clean" -o "x${1}" = "xclean" ]; then
        make -f makefile.unix clean
        stat=$?
        exit $stat
elif [ "x${1}" = "x--install" -o "x${1}" = "xinstall" ]; then
        if [ -r ${coinname}3d ]; then
                cp -p ${coinname}3d /usr/local/bin/${pcdversion}
                stat=$?
                if [ $stat -ne 0 ]; then
                        echo "error ${stat} copying ${coinname}3d into /usr/local/bin/${pcdversion}"
                else
                        echo "installed into: /usr/local/bin/${pcdversion}"
                fi
                exit 0
        else
                echo "cannot install: ${PWD}/${coinname}3d is not readable"
                exit 2
        fi
else
        echo "unrecognized option: ${1}"
        exit 1
fi
legendary
Activity: 3444
Merit: 6182
Crypto Swap Exchange
i do evening+weekend/cheap electricity mining with low horsepower. i havent been paying attention and perhaps my machine ran amok.

update: looks like i've not found a block in ages. my low horsepower is too low for the difficulty it seems.
   my explorer shows the last Proof of Work block as sunday june 27

Have you been able to get this compiled on  / for any modern linux system?

I just tried on Ubuntu 20.04 lts and 18.04 lts and both failed due to dependency messes. But, since I have compiled newer coins with them I don't know if it's the OS or other newer things I have installed. I thought I had a copy of the binary saved someplace but I can't find it.

Side thought, makes you wonder how much stuff like this kills older coins, I want to run it but there is an issue getting it compiled and there are no official linux binaries and for a bit of fun / playing around mining it's not worth putting in the extra time needed to do it so we go play with another coin.

-Dave
dnp
full member
Activity: 401
Merit: 110
OK, I have to ask who is mining this and where?
Difficulty is over 100 there are no pools that I can see and the only exchange that supports it has no trades.

So unless there is a pool that I don't know about and an exchange it's a hell of an expense at the moment to mine this since your scrypt miners can be making you a fair amount of money just mining LTC.

-Dave

i do evening+weekend/cheap electricity mining with low horsepower. i havent been paying attention and perhaps my machine ran amok.

update: looks like i've not found a block in ages. my low horsepower is too low for the difficulty it seems.
   my explorer shows the last Proof of Work block as sunday june 27



legendary
Activity: 3444
Merit: 6182
Crypto Swap Exchange
OK, I have to ask who is mining this and where?
Difficulty is over 100 there are no pools that I can see and the only exchange that supports it has no trades.

So unless there is a pool that I don't know about and an exchange it's a hell of an expense at the moment to mine this since your scrypt miners can be making you a fair amount of money just mining LTC.

-Dave
legendary
Activity: 3444
Merit: 6182
Crypto Swap Exchange
what if CPU mining?

Sorry no, we will still keep it as scrypt coin, we will update the wallet so that it will load fast.

In that case can you use one of the newer difficulty adjustment algorithms?
As of now it's somewhat simple to game it.

I'm not sure if it's related to to loading speed but can you take a look at the memory use.
At least under Windows it uses well over 1.5GB of RAM.

-Dave

yup the current one is a pig.



yup that's the one update we need to resolve as well.

Bueller?...Bueller?...Bueller?...

Just a 3 month poke since we last discussed the update. Wondering if there is any progress. The memory & disk i/o are really annoying since I run most of my coin daemons in VMs to keep them separate in case one goes haywire. Most can fit in a much smaller space then MMC.

-Dave
newbie
Activity: 167
Merit: 0
listen=1
daemon=1
server=1
rpcuser=**Yourusername**
rpcpassword=**Yourpassword**
rpcallowip=localhost
rpcport=25932
addnode=209.188.18.188
addnode=101.98.216.60
addnode=75.170.6.122
addnode=178.214.169.242
addnode=121.73.162.156
addnode=81.15.179.42:25931
addnode=45.138.72.70:25931
addnode=74.113.36.2:25931
addnode=144.202.22.19
addnode=37.189.43.168
addnode=96.252.98.225
addnode=coins.dognose.net



getpeerinfo




[
{
"addr" : "96.252.98.225:25931",
"services" : "00000001",
"lastsend" : 1623567428,
"lastrecv" : 1623567355,
"conntime" : 1623554543,
"version" : 70000,
"subver" : "/MetalMusicCoin3:3.1.0/",
"inbound" : false,
"releasetime" : 0,
"startingheight" : 3022498,
"banscore" : 0
},
{
"addr" : "37.189.43.168:25931",
"services" : "00000001",
"lastsend" : 1623567426,
"lastrecv" : 1623567427,
"conntime" : 1623555387,
"version" : 70000,
"subver" : "/MetalMusicCoin3:3.1.0/",
"inbound" : false,
"releasetime" : 0,
"startingheight" : 3400373,
"banscore" : 0
}
]
member
Activity: 1545
Merit: 23
0 conections Sad any new addnodes ?

You can try to connect with below nodes:port

        "addr" : "23.233.55.92:53840",
        "addr" : "37.189.43.168:57572",
        "addr" : "23.233.55.92:54704",
        "addr" : "74.113.36.2:50016",
        "addr" : "218.0.235.66:36054",
        "addr" : "96.252.98.225:55820",
        "addr" : "81.15.179.42:58090",
        "addr" : "195.16.79.19:56232",
sr. member
Activity: 515
Merit: 250
0 conections Sad any new addnodes ?
sr. member
Activity: 515
Merit: 250
pool is up and finding blocks as it should :-)
newbie
Activity: 167
Merit: 0
addnode=81.15.179.42:25931   Grin
Pages:
Jump to: