Pages:
Author

Topic: [ANN] Terracoin (TRC) - Est 2012 - page 18. (Read 408769 times)

member
Activity: 176
Merit: 10
June 23, 2018, 10:15:20 AM
Hi,

getmineinfo is removed, and yiimp don't manage it in the right way (also if the getinfo flag is removed)

Have you some idea?

Else i remove the wallet to avoid any confusion on miners.

Regards


Rebuilt from scratch,

From github source code get today 23 june 2018

Hope this one is the right wallet, else i remove completely form my multipool.

Regards


Hi,

tnx for the update, now i manage to update the wallet, but i don't unterstand one thing

I've used the wallet found here: https://github.com/terracoin/terracoin/releases   Terracoin Core v0.12.1.8    TheSin- released this on 1 Mar

If that one is not the "good" wallet, way is the latest build available on github?

I've to merge all the git change and build a different release?

So the latest release of terracoin wallet is version 12.??.?? ?

Tnx

Regards


I do mining on the pool https://www.[Suspicious link removed]/site/mining and get a lot of blocks, but why my balance is not visible? and there shows payment

I have contacted the owner of that pool to request they update their terracoin client .. Lets hope they get it done Smiley
member
Activity: 176
Merit: 10
June 23, 2018, 09:58:33 AM
Rebuilt from scratch,

From github source code get today 23 june 2018

Hope this one is the right wallet, else i remove completely form my multipool.

Regards


Hi,

tnx for the update, now i manage to update the wallet, but i don't unterstand one thing

I've used the wallet found here: https://github.com/terracoin/terracoin/releases   Terracoin Core v0.12.1.8    TheSin- released this on 1 Mar

If that one is not the "good" wallet, way is the latest build available on github?

I've to merge all the git change and build a different release?

So the latest release of terracoin wallet is version 12.??.?? ?

Tnx

Regards


I do mining on the pool https://www.[Suspicious link removed]/site/mining and get a lot of blocks, but why my balance is not visible? and there shows payment

I have contacted the owner of that pool to request they update their terracoin client .. Lets hope they get it done Smiley
member
Activity: 176
Merit: 10
June 23, 2018, 09:33:09 AM
Hi,

tnx for the update, now i manage to update the wallet, but i don't unterstand one thing

I've used the wallet found here: https://github.com/terracoin/terracoin/releases   Terracoin Core v0.12.1.8    TheSin- released this on 1 Mar

If that one is not the "good" wallet, way is the latest build available on github?

I've to merge all the git change and build a different release?

So the latest release of terracoin wallet is version 12.??.?? ?

Tnx

Regards


I do mining on the pool https://www.[Suspicious link removed]/site/mining and get a lot of blocks, but why my balance is not visible? and there shows payment

I have contacted the owner of that pool to request they update their terracoin client .. Lets hope they get it done Smiley
hero member
Activity: 882
Merit: 500
June 22, 2018, 10:46:19 AM
I do mining on the pool https://www.[Suspicious link removed]/site/mining and get a lot of blocks, but why my balance is not visible? and there shows payment

I have contacted the owner of that pool to request they update their terracoin client .. Lets hope they get it done Smiley
I also hope so, because I have done two coin mining there and both of them do not go into my wallet, even though it states payment on dasbhor pool
newbie
Activity: 36
Merit: 0
June 22, 2018, 10:34:34 AM
I do mining on the pool https://www.[Suspicious link removed]/site/mining and get a lot of blocks, but why my balance is not visible? and there shows payment

I have contacted the owner of that pool to request they update their terracoin client .. Lets hope they get it done Smiley
newbie
Activity: 36
Merit: 0
June 22, 2018, 10:32:49 AM
This coin is old coin, the devs just implement the masternode recently?
Masternodes were implemented last year (october if I remember right)
newbie
Activity: 98
Merit: 0
June 22, 2018, 10:31:37 AM
This coin is old coin, the devs just implement the masternode recently?
newbie
Activity: 36
Merit: 0
June 22, 2018, 10:03:43 AM
I do mining on the pool https://www.[Suspicious link removed]/site/mining and get a lot of blocks, but why my balance is not visible? and there shows payment

That mining pool is doing something completely different .. any terracoins mined there would not be able to be used on any exchange as they are basically a different coin. Looks like they are running old code before auxpow was even implemented... so code from a couple years ago at least.

I would pick a different pool that can stay up to date with various coins code.
hero member
Activity: 882
Merit: 500
June 22, 2018, 02:49:13 AM
I do mining on the pool https://www.joinmycrypto.tk/site/mining and get a lot of blocks, but why my balance is not visible? and there shows payment
newbie
Activity: 6
Merit: 0
June 17, 2018, 02:55:07 PM
Thanks!! that did the job Cheesy
sr. member
Activity: 425
Merit: 262
June 17, 2018, 08:40:14 AM
I try to upgrade but the script fails.
I do run the script in sudo.

Thanks in advance!

error:
rm -f trc-updater; curl -0 rm -f tr https://raw.githubusercontent.com/terracoin/terracoin/v0.12.2.x/trc-updater; sudo bash trc-updater
curl: Remote file name has no length!
curl: try 'curl --help' or 'curl --manual' for more information
curl: (6) Could not resolve host: tr

I think the cmd should be this: rm -f trc-updater; curl -O https://raw.githubusercontent.com/terracoin/terracoin/v0.12.2.x/trc-updater; sudo bash trc-updater
newbie
Activity: 6
Merit: 0
June 17, 2018, 06:07:09 AM
I try to upgrade but the script fails.
I do run the script in sudo.

Thanks in advance!

error:
rm -f trc-updater; curl -0 rm -f tr https://raw.githubusercontent.com/terracoin/terracoin/v0.12.2.x/trc-updater; sudo bash trc-updater
curl: Remote file name has no length!
curl: try 'curl --help' or 'curl --manual' for more information
curl: (6) Could not resolve host: tr
#!/bin/bash

if [ $(uname -s) != "Linux" ]; then
        echo "This script is only for Linux"
        exit
fi

usecurl=1
if ! which curl > /dev/null; then
        usecurl=0
        if ! which wget > /dev/null; then
                echo "Could not find curl or wget!"
                exit
        fi
fi

if ! which sudo > /dev/null; then
        echo "Could not find sudo!"
        exit
fi

arch=$(uname -m)
if [ $arch != "x86_64" ]; then
        arch="i686-pc";
fi
vers="0.12.1"

url=https://terracoin.io/bin/terracoin-core-current/terracoin-${vers}-${arch}-linux-gnu.tar.gz

myuid=$(id -u)
pwd=$(pwd)
pids=$(ps auxwww | grep terracoind | grep -v grep | grep -v testnet | awk {'print $2'})
if [ $(echo ${pids} | wc -w) -lt 1 ]; then
        echo "terracoind not found running!"
        exit
fi

tmpdir=$(mktemp -d)
chmod 777 ${tmpdir}

echo -n "Downloading new version... "
if [ $usecurl -eq 1 ]; then
        curl ${url} --output ${tmpdir}/terracoin.tar.gz --silent
else
        wget ${url} -O ${tmpdir}/terracoin.tar.gz --quiet
fi

if [ $? -ne 0 ]; then
        echo "FAILED ($?)"
        rm -rf ${tmpdir}
        exit
fi
echo "OK"

echo -n "Extracting files... "
tar xzf ${tmpdir}/terracoin.tar.gz -C ${tmpdir}/ --strip-components=1

if [ $? -ne 0 ]; then
        echo "FAILED ($?)"
        rm -rf ${tmpdir}
        exit
fi
echo "OK"

chmod 777 ${tmpdir}/bin

for pid in ${pids}; do
        terracoincli_found=0
        terracoind_uid=0
        terracoincli_uid=0
        runas=0

        if [ ! -d /proc/${pid} ]; then
                echo "terracoind process not found!"
                continue
        fi

        runas=$(stat -c "%u" /proc/${pid}/cmdline)
        usesudo=0
        if [ ${myuid} -ne ${runas} ]; then
               usesudo=1
        fi
        if [ ${usesudo} -eq 1 ] && [ ${myuid} -ne 0 ]; then
                echo "You do not have the required permissions, please run with sudo"
                continue
        fi

        cmdprefix=""
        if [ ${usesudo} -eq 1 ]; then
                cmdprefix="sudo -u #${runas} "
        fi

        cmd=$(cat /proc/${pid}/cmdline | tr '\000' ' ')
        exe=$(${cmdprefix}realpath /proc/${pid}/exe)
        cwd=$(${cmdprefix}realpath /proc/${pid}/cwd)

        if ! [[ ${exe} =~ terracoind$ ]]; then
                continue;
        fi

        terracoind_dir=$(dirname ${exe})

        if [ ! -d ${terracoind_dir} ]; then
                echo "terracoind Install directory not found!"
                continue
        fi

        echo "terracoind install directory... ${terracoind_dir}"
        read -p "Replace terracoin in ${terracoind_dir}? " -n 1 -r
        echo
        if ! [[ $REPLY =~ ^[yY]$ ]]; then
                continue
        fi

        echo -n "Looking for terracoin-cli... "
        if [ -f ${terracoind_dir}/terracoin-cli ]; then
                terracoincli_found=1
                terracoincli_dir=${terracoind_dir}
        elif [ -f $(which terracoin-cli) ]; then
                terracoincli_found=1
                terracoincli_dir=$(dirname $(which terracoin-cli))
        fi
        if [ ${terracoincli_found} -eq 1 ]; then
                echo "OK"
        else
                echo "FAILED"
        fi

        terracoindprefix=""
        terracoincliprefix=""
        terracoind_uid=$(stat -c "%u" ${terracoind_dir}/terracoind)
        if [ ${terracoind_uid} -ne ${myuid} ]; then
                terracoindprefix="sudo -u #${terracoind_uid} "
        fi
        if [ ${terracoincli_found} -eq 1 ]; then
                terracoincli_uid=$(stat -c "%u" ${terracoincli_dir}/terracoin-cli)
                if [ ${terracoincli_uid} -ne ${myuid} ]; then
                        terracoincliprefix="sudo -u #${terracoincli_uid} "
                fi
        fi

        echo -n "Stopping terracoind... "
        if [ ${terracoincli_found} -eq 1 ]; then
                kill -INT ${pid} > /dev/null
        else
                ${cmdprefix}${terracoincli_dir}/terracoin-cli stop > /dev/null
        fi
        if [ $? -ne 0 ]; then
                echo "FAILED ($?)"
                continue
        fi
        while [ -d /proc/${pid} ]; do
                sleep 1
        done
        echo "OK"

        echo -n "Updating terracoind... "
        ${terracoindprefix}cp ${tmpdir}/bin/terracoind ${terracoind_dir}
        if [ $? -ne 0 ]; then
                echo "FAILED ($?)"
        else
                echo "OK"
                if [ ${terracoincli_found} -eq 1 ]; then
                        echo -n "Updating terracoin-cli... "
                        ${terracoincliprefix}cp ${tmpdir}/bin/terracoin-cli ${terracoincli_dir}
                        if [ $? -ne 0 ]; then
                                echo "FAILED ($?), you should do this manually"
                        else
                                echo "OK"
                        fi
                fi
        fi

        echo -n "Restarting terracoind... "
        ${cmdprefix}bash -c "cd ${cwd} && ${cmd} &"
        if [ $? -ne 0 ]; then
                echo "FAILED ($?)"
                continue
        fi
        echo "OK"
done

rm -rf ${tmpdir}
echo "Done"
bash: trc-updater: No such file or directory
legendary
Activity: 1231
Merit: 1001
June 16, 2018, 06:03:35 PM
It is imperative that everyone upgrades their Terracoin client and/or masternode to version 0.12.1.8, otherwise you will not get rewards!  Please upgrade! https://github.com/terracoin/terracoin/releases/tag/v0.12.1.8
sr. member
Activity: 425
Merit: 262
June 15, 2018, 10:49:30 PM
Hello Terracoin believers,

Our aim is to add value to the whole crypto community by giving the best user experience to analyse cryptocurrencies.

It would be really great help from your side if you can spend 60 seconds of your time and give us your valuable feedback for our two recent updates 1) Snapshot and 2) Colourful interface of Terracoin at: https://cointopper.com/coin/terracoin

Constructive criticisms are always welcome at CoinTopper.  Thank you!!
The website UI is beautiful. I'll bookmark it. Thanks.
newbie
Activity: 28
Merit: 2
June 15, 2018, 10:26:17 PM
Hello Terracoin believers,

Our aim is to add value to the whole crypto community by giving the best user experience to analyse cryptocurrencies.

It would be really great help from your side if you can spend 60 seconds of your time and give us your valuable feedback for our two recent updates 1) Snapshot and 2) Colourful interface of Terracoin at: https://cointopper.com/coin/terracoin

Constructive criticisms are always welcome at CoinTopper.  Thank you!!
legendary
Activity: 1231
Merit: 1001
sr. member
Activity: 425
Merit: 262
June 13, 2018, 09:45:28 PM
Note
Quote

clockuniverse
4:04 AM

If your masternode is down then you are running an older version of the client.  Please upgrade to 0.12.1.8!  (edited)
 
clockuniverse
4:09 AM

You will need to start the masternode from the local client again too, obviously.
newbie
Activity: 3
Merit: 0
June 10, 2018, 02:03:48 PM
TRC is an awesome project with solid team
legendary
Activity: 1231
Merit: 1001
June 10, 2018, 02:01:51 PM
Should I mine this coin now?

You can if you like, but it is SHA256 so you will need an ASIC miner.  You can merge mine it with other merge minable coins.  Once we introduce multi-algo it will make it much easier for the average person to get into the mining side of things.

really looking forward to the integration. It might be quite hard right know to mine it, which makes it somewhat unattractive for a lot of especially newcomers. I really love the project and the vision and I think that could really give it a good push in the future. I really have to say, that I very like the frequent and steady updates!

Thanks man!  After our next release with all the updated code, and in wallet decentralized governance stuff we will be working on multi-algo.  This will help new people get in on TRC and help distribute the mining power away from centralized ASIC miners.
Pages:
Jump to: