Bitcoin Forum
April 25, 2024, 08:30:32 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: What is the best mining option?
PoW
PoS
Other - I will describe in the comments so that my option is added to this poll

Pages: « 1 ... 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 [127] 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 »
  Print  
Author Topic: [ANN] Terracoin (TRC) - Est 2012  (Read 408625 times)
hanzac
Sr. Member
****
Offline Offline

Activity: 425
Merit: 262


View Profile
June 14, 2018, 01:45:28 AM
 #2521

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.
"The nature of Bitcoin is such that once version 0.1 was released, the core design was set in stone for the rest of its lifetime." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
clockuniverse (OP)
Legendary
*
Offline Offline

Activity: 1231
Merit: 1001


View Profile WWW
June 15, 2018, 01:30:36 AM
 #2522

June 14th Weekly Terracoin Update - Immediately - Please read!  Important info! https://medium.com/@clockuniverse/june-14th-weekly-terracoin-update-immediately-fd789732d91 or steemit https://steemit.com/bitcoin/@clockuniverse/june-14th-weekly-terracoin-update-immediately

.    Implemented!    .
. DASH’s Decentralized Governance, 
  MASTERNODES, and Instant Send.
.
████
  ██

  ██
████

       ████
  ██

  ██
████

       WEBSITE
   REDDIT
   TWITTER

       ANN THREAD
   MATTERMOST
   BTC GARDEN

cointopper
Newbie
*
Offline Offline

Activity: 28
Merit: 2


View Profile
June 16, 2018, 02:26:17 AM
 #2523

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!!
hanzac
Sr. Member
****
Offline Offline

Activity: 425
Merit: 262


View Profile
June 16, 2018, 02:49:30 AM
 #2524

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.
clockuniverse (OP)
Legendary
*
Offline Offline

Activity: 1231
Merit: 1001


View Profile WWW
June 16, 2018, 10:03:35 PM
 #2525

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

.    Implemented!    .
. DASH’s Decentralized Governance, 
  MASTERNODES, and Instant Send.
.
████
  ██

  ██
████

       ████
  ██

  ██
████

       WEBSITE
   REDDIT
   TWITTER

       ANN THREAD
   MATTERMOST
   BTC GARDEN

erdna
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
June 17, 2018, 10:07:09 AM
 #2526

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
hanzac
Sr. Member
****
Offline Offline

Activity: 425
Merit: 262


View Profile
June 17, 2018, 12:40:14 PM
 #2527

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
erdna
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
June 17, 2018, 06:55:07 PM
 #2528

Thanks!! that did the job Cheesy
clockuniverse (OP)
Legendary
*
Offline Offline

Activity: 1231
Merit: 1001


View Profile WWW
June 22, 2018, 02:48:03 AM
 #2529

June 21st Weekly Terracoin Update - Movement https://medium.com/@clockuniverse/june-21th-weekly-terracoin-update-movement-259e495642ea or https://steemit.com/bitcoin/@clockuniverse/june-21th-weekly-terracoin-update-movement

.    Implemented!    .
. DASH’s Decentralized Governance, 
  MASTERNODES, and Instant Send.
.
████
  ██

  ██
████

       ████
  ██

  ██
████

       WEBSITE
   REDDIT
   TWITTER

       ANN THREAD
   MATTERMOST
   BTC GARDEN

doktor1897
Hero Member
*****
Offline Offline

Activity: 882
Merit: 500



View Profile
June 22, 2018, 06:49:13 AM
 #2530

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

                 ██            ██
               ██████        ██████
            ████████████      ██████
        ███████████████████    ██████
     ███████████    ██████████  ██████
  ██████████    ███    ████████  ▀█████
  ██████    ███████████   ██████  █████
  █████   ██████  ██████   █████  █████
  █████    ███      ███    █████  █████
  █████  ██            ██  █████  █████
  █████  ███          ███  █████  █████
  █████  ███████   ██████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████  █████ ████  ████  ██████
  █████  ████   ███  ████  ███  ██████
  █████  ████    █   ████  █   ██████ 
  █████  ████        ██      ███████     
    ███  ████        █     ███████         
      █  ████         ▄██  █████       
           ██        ████  ███
            █        ██▀
`AiBB`  ———————————
HARNESSING THE POWER OF Ai IN CRYPTO
▐ -
`BUY TOKENS`
-▐   Twitter
  Telegram
  Facebook
|WP
Reddit
Medium
realSixOfFive
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
June 22, 2018, 02:03:43 PM
 #2531

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.
aenin2764
Newbie
*
Offline Offline

Activity: 98
Merit: 0


View Profile
June 22, 2018, 02:31:37 PM
 #2532

This coin is old coin, the devs just implement the masternode recently?
realSixOfFive
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
June 22, 2018, 02:32:49 PM
 #2533

This coin is old coin, the devs just implement the masternode recently?
Masternodes were implemented last year (october if I remember right)
realSixOfFive
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
June 22, 2018, 02:34:34 PM
 #2534

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
doktor1897
Hero Member
*****
Offline Offline

Activity: 882
Merit: 500



View Profile
June 22, 2018, 02:46:19 PM
 #2535

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

                 ██            ██
               ██████        ██████
            ████████████      ██████
        ███████████████████    ██████
     ███████████    ██████████  ██████
  ██████████    ███    ████████  ▀█████
  ██████    ███████████   ██████  █████
  █████   ██████  ██████   █████  █████
  █████    ███      ███    █████  █████
  █████  ██            ██  █████  █████
  █████  ███          ███  █████  █████
  █████  ███████   ██████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████████████████  █████  █████
  █████  ████  █████ ████  ████  ██████
  █████  ████   ███  ████  ███  ██████
  █████  ████    █   ████  █   ██████ 
  █████  ████        ██      ███████     
    ███  ████        █     ███████         
      █  ████         ▄██  █████       
           ██        ████  ███
            █        ██▀
`AiBB`  ———————————
HARNESSING THE POWER OF Ai IN CRYPTO
▐ -
`BUY TOKENS`
-▐   Twitter
  Telegram
  Facebook
|WP
Reddit
Medium
digibob00
Member
**
Offline Offline

Activity: 176
Merit: 10


View Profile WWW
June 23, 2018, 01:33:09 PM
 #2536

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
digibob00
Member
**
Offline Offline

Activity: 176
Merit: 10


View Profile WWW
June 23, 2018, 01:58:33 PM
 #2537

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
digibob00
Member
**
Offline Offline

Activity: 176
Merit: 10


View Profile WWW
June 23, 2018, 02:15:20 PM
 #2538

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
Cryptao
Member
**
Offline Offline

Activity: 82
Merit: 10

The Tao of Crypto


View Profile
June 23, 2018, 02:16:06 PM
 #2539

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

Hey, 12.1.8 is the correct wallet version. You should be fine if you installed that one.
realSixOfFive
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
June 23, 2018, 03:48:21 PM
 #2540

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

getinfo is being deprecated in all wallets following bitcoins code base. (see https://github.com/bitcoin/bitcoin/issues/11382 )

I believe that 0.12.1.8 has getinfo still and will work fine.
Pages: « 1 ... 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 [127] 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!