Pages:
Author

Topic: [ANN] Neutron Crypto Coin Project (NTRN) Version 4.0.1 available now. - page 45. (Read 134240 times)

hero member
Activity: 686
Merit: 512
www.neutroncoin.com
Neutron has been listed on Novaexchange, markets are open!


sr. member
Activity: 546
Merit: 254
ʕʘ̅͜ʘ̅ʔ
as it seems neutron doesnt have the ability to run masternode with remote (cold storage) wallet (anymore?) !?
ive read you removed the masternode.conf in favor of the current system.
most modern coins have the ability to have the masternode run remotly.

i tried to add masternode.conf in windows to /%appdata%/Neutron/
but the wallet is not working with it. its sad. i hope the wallet gets updated.

i dont want to store the wallet with the colleteral on the linux masternode vps, its a bad thing to do ^^

at home i cant properly run a masternode because of dynamic ip,
guess i have to invest into some windows server or increase my linux skills...
sr. member
Activity: 546
Merit: 254
ʕʘ̅͜ʘ̅ʔ
ok things were going great on ubuntu 17.04 with the fix.

now i tried the same on ubuntu 16.04 with 1gb ram and got some error message i didnt copy (tried to build with PIE=1)
then i tried to copy my build from 17.04 but it doesnt work on 16.04 (should have known)
i need to deploy another 16.04 sandbox, build it there with more ram or install swap on vps, but not tonight.



alright.
Ubuntu 16.04 doesnt need the fix from above.
smooth build from start without much editing on my 2gb ram sandbox.

now repeat that on live vps or just upload the build...
guide is comming up next week

... on live vps its a different story again:
cannot run as user only as root, not sure if this is supposed to be like this.
but at least its syncing... now only need cli Cheesy

Code:
neutron@vps:~$ ./Neutrond -daemon


************************
EXCEPTION: N5boost12interprocess22interprocess_exceptionE
No such file or directory
Neutron in AppInit()

terminate called after throwing an instance of 'boost::interprocess::interprocess_exception'
  what():  No such file or directory
Aborted

i installed jsonrpcake, but it cannot connect to Neutron.
guess i do something wrong. rpc port should still be 32000

does a proper call look like this?:
Code:
jsonrpc :32000 getinfo

im getting timeouts


ok here is one smooth way to make rpc calls

you need curl (apt install curl)
Code:
curl --user  --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getinfo", "params": [] }' -H 'content-type: text/plain;' http://127.0.0.1:32000/

lets see how i import private key with this xD
sr. member
Activity: 546
Merit: 254
ʕʘ̅͜ʘ̅ʔ
Code:
                                                                              ^
darksend.cpp:977:29: error: cannot convert ‘bool’ to ‘bool*’ in initialization
     bool* pfMissingInputs = false;
                             ^~~~~
darksend.cpp: In member function ‘bool CDarkSendPool::DoAutomaticDenominating(bool, bool)’:


Depends of compiler, you can try replace pointer to false ("bool *pfMissingInputs = false;"), with pointer to false value var ( bool pfMissingInputs = false;), and pass pointer of var (&pfMissingInputs) as argument;

Replace it like this in all "bool *pfMissingInputs = false":
Code:
    bool pfMissingInputs = false;
    if(!AcceptableInputs(mempool, txCollateral, false, &pfMissingInputs)){
        if(fDebug) printf ("CDarkSendPool::IsCollateralValid - didn't pass IsAcceptable\n");
        return false;
    }

If you have problems I can upload a github corrected version.


ok i found the line with nano (ctrl + w)

original looks like this:
Code:
//if(!AcceptableInputs(mempool, state, txCollateral)){
    bool* pfMissingInputs = false;
    if(!AcceptableInputs(mempool, txCollateral, false, pfMissingInputs)){
        if(fDebug) printf ("CDarkSendPool::IsCollateralValid - didn't pass IsAcceptable\n");
        return false;

now all i should do is remove the * and add & ? lets see.. didnt work Sad

Code:
masternode.cpp:162:26: error: cannot convert ‘bool’ to ‘bool*’ in initialization
  bool* pfMissingInputs = false;
                          ^~~~~
masternode.cpp:191:17: warning: unused variable ‘nDoS’ [-Wunused-variable]
             int nDoS = 0;
                 ^~~~
masternode.cpp:221:137: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int64_t {aka long int}’ [-Wformat=]
 rejected, too far into the past %s - %d %d \n", vin.ToString().c_str(), sigTime, GetAdjustedTime());
                                                                                                   ^
masternode.cpp:221:137: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int64_t {aka long int}’ [-Wformat=]
masternode.cpp: In member function ‘void CMasterNode::Check()’:
masternode.cpp:605:33: error: cannot convert ‘bool’ to ‘bool*’ in initialization
         bool* pfMissingInputs = false;
                                 ^~~~~

i have to change it in other files too? Sad
ok i changed the lines in
darksend.cpp & masternode.cpp
and voila, build complete Cheesy
thank you very much, that was awesome
full member
Activity: 206
Merit: 102
step forward
Code:
                                                                              ^
darksend.cpp:977:29: error: cannot convert ‘bool’ to ‘bool*’ in initialization
     bool* pfMissingInputs = false;
                             ^~~~~
darksend.cpp: In member function ‘bool CDarkSendPool::DoAutomaticDenominating(bool, bool)’:


Depends of compiler, you can try replace pointer to false ("bool *pfMissingInputs = false;"), with pointer to false value var ( bool pfMissingInputs = false;), and pass pointer of var (&pfMissingInputs) as argument;

Replace it like this in all "bool *pfMissingInputs = false":
Code:
    bool pfMissingInputs = false;
    if(!AcceptableInputs(mempool, txCollateral, false, &pfMissingInputs)){
        if(fDebug) printf ("CDarkSendPool::IsCollateralValid - didn't pass IsAcceptable\n");
        return false;
    }

If you have problems I can upload a github corrected version.
sr. member
Activity: 546
Merit: 254
ʕʘ̅͜ʘ̅ʔ
can anyone help me with unix build?
i try to build with ubuntu 17.04 server with 2gb ram and followed the official doc

this is the error i get:

i should have all dependencies and disabled miniupnp.



You should copy ": error:". GCC does not stop on warnings.




Code:
                                                                              ^
darksend.cpp:977:29: error: cannot convert ‘bool’ to ‘bool*’ in initialization
     bool* pfMissingInputs = false;
                             ^~~~~
darksend.cpp: In member function ‘bool CDarkSendPool::DoAutomaticDenominating(bool, bool)’:
sr. member
Activity: 446
Merit: 250
Nice to see some action around here. I've been slowly buying on Topia for a while now hoping for an uptick. Glad that I did now Grin
newbie
Activity: 19
Merit: 0
you should put NTRN on coinexchange.io

Are you in talked with Bittrex or Polo? Thanks
full member
Activity: 206
Merit: 102
step forward
can anyone help me with unix build?
i try to build with ubuntu 17.04 server with 2gb ram and followed the official doc

this is the error i get:
Code:
darksend.cpp: In member function ‘int CDarkSendPool::GetDenominationsByAmount(int64_t, int)’:
darksend.cpp:1964:76: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘int64_t {aka long int}’ [-Wformat=]
         printf("GetDenominationsByAmount --- %d nOutputs %d\n", v, nOutputs);
                                                                            ^
makefile.unix:180: die Regel für Ziel „obj/darksend.o“ scheiterte
make: *** [obj/darksend.o] Fehler 1

i should have all dependencies and disabled miniupnp.



You should copy ": error:". GCC does not stop on warnings.


sr. member
Activity: 546
Merit: 254
ʕʘ̅͜ʘ̅ʔ
can anyone help me with unix build?
i try to build with ubuntu 17.04 server with 2gb ram and followed the official doc

this is the error i get:
Code:
darksend.cpp: In member function ‘int CDarkSendPool::GetDenominationsByAmount(int64_t, int)’:
darksend.cpp:1964:76: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘int64_t {aka long int}’ [-Wformat=]
         printf("GetDenominationsByAmount --- %d nOutputs %d\n", v, nOutputs);
                                                                            ^
makefile.unix:180: die Regel für Ziel „obj/darksend.o“ scheiterte
make: *** [obj/darksend.o] Fehler 1

i should have all dependencies and disabled miniupnp.

hero member
Activity: 686
Merit: 512
www.neutroncoin.com
Neutron voting on Novaexchange is finished.

250/250 Thanks to everyone!

CCEX is up next.
full member
Activity: 542
Merit: 101
Guys I urge you to do 3 things there is Yobit profile on bitcointalk representing the exchange write him PM. There is Yobit thread write about the problem there and write on twitter they have active twitter account. I did all 3 things so we need more presure so we can get the wallet working. Cheers
sr. member
Activity: 434
Merit: 250
thanks for update developer, its not your fault yobit are legal bandits. but thanks for trying.
hero member
Activity: 686
Merit: 512
www.neutroncoin.com
We are at 210 votes on Novaexchange, almost there!

I am meeting with a pro local to dallas development firm, things are looking good for them to begin work on the coin next week.

I will keep everyone posted but things are really looking good.

I am aware of various bugs, these will be the first thing addressed by the firm.

I have messaged yobit and they tell me the same generic thing they tell everyone, its almost as if it is a generated reply.

I have already added a "do not trade here" warning on the neutron website as well as here on bitcointalk.

I will be taking Yobit off of this thread and our website and will no longer promote trading on yobit.

Thats allot of I's......


Neutron will be listed on Novaexchange in the next few days!

Then we will work on CCEX.

Big things in the future for NTRN, keep staking!!!!




full member
Activity: 446
Merit: 105
Some problems with a masternode.

I successfully set up a masternode and got reward a couple of times in amount of 21.xxx coins.s
I had to restart computer and when I started masernode again it was not starting and found the mined amount turned to 7.xxx coins.
...

I think that you are staking, not a nucleus node.
~21 NTRN are mined in staking mode, but ~14 NTRN is the reward of nucleus nodes. At the result, staking reward is only ~7 NTRN per block discovered.

I know it is something wrong or at least mn isn't running right.
Is it normal I get confirmations for 21 coins but the total number of coins in wallet shows only 7 coins added?

Is there any restrictions the wallet running mn should have an address with balance?
I set up regular wallet and received coins first and then setup mn and transferred 25k coins, so there are 2 addresses with balances.

Am I supposed to start mn again from nucleus tab whenever I restart the wallet?

Don't understand why the wallet is freezing so often(guess scanning masternodes?) and take so long to load when I start.
I've never seen from other wallets and a mn.

By the way, I restarted it after paying 25k to myself again.
Mn list showing my mn for now but the active time for my mn is not changing.
It is showing 00m:00s, but other listed mns are increasing by the time.
Is it normal?

Thanks for your help.
full member
Activity: 206
Merit: 102
step forward
I only see a guide to setting up staking where is the guide for master nodes set up?

In the first page of this topic you can find 2 links (Masternode Setup Tutorials).
full member
Activity: 465
Merit: 100
Some problems with a masternode.

I successfully set up a masternode and got reward a couple of times in amount of 21.xxx coins.s
I had to restart computer and when I started masernode again it was not starting and found the mined amount turned to 7.xxx coins.
...

I think that you are staking, not a nucleus node.
~21 NTRN are mined in staking mode, but ~14 NTRN is the reward of nucleus nodes. At the result, staking reward is only ~7 NTRN per block discovered.


 I only see a guide to setting up staking where is the guide for master nodes set up?
full member
Activity: 206
Merit: 102
step forward
Some problems with a masternode.

I successfully set up a masternode and got reward a couple of times in amount of 21.xxx coins.s
I had to restart computer and when I started masernode again it was not starting and found the mined amount turned to 7.xxx coins.
...

I think that you are staking, not a nucleus node.
~21 NTRN are mined in staking mode, but ~14 NTRN is the reward of nucleus nodes. At the result, staking reward is only ~7 NTRN per block discovered.
hero member
Activity: 615
Merit: 502
Some problems with a masternode.

I successfully set up a masternode and got reward a couple of times in amount of 21.xxx coins.s
I had to restart computer and when I started masernode again it was not starting and found the mined amount turned to 7.xxx coins.
I sent 25k from mn wallet to same mn wallet then I could start it again.

I updated with newer version of wallet and but some reason I had to down load the blocks again since the moving the blocks from old wallet didn't stop resync'ing.

I could restart the mn without problem.

Then I had to restart the computer a couple of days later and I encountered the same problem.

Also I can see my mn from the list after starting it but I can't see it on the list after few hours.
Then I start it again and see it on the list.

Also the wallet is going unresponsive every 10 to 15 seconds?

I've had similar experiences with the wallet and masternode.


Yes, likewise, exactly the same issues as above here on Windows 10.  Came here looking for a new wallet version  Huh
member
Activity: 75
Merit: 10
Yobit still doesn't let to withdraw
Pages:
Jump to: