Bitcoin Forum
April 20, 2024, 03:59:21 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 [70] 71 72 73 74 75 76 77 78 79 »
  Print  
Author Topic: [ANN] Neutron Crypto Coin Project (NTRN) Version 4.1.2 available now.  (Read 134062 times)
asor
Hero Member
*****
Offline Offline

Activity: 809
Merit: 1008



View Profile
September 05, 2018, 06:33:39 PM
 #1381

Anyone know how I can lock unspent vout's? Unfortunately I found no method like "lockunspent" in other currencies. Is there something similar in NTRN?
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713585561
Hero Member
*
Offline Offline

Posts: 1713585561

View Profile Personal Message (Offline)

Ignore
1713585561
Reply with quote  #2

1713585561
Report to moderator
1713585561
Hero Member
*
Offline Offline

Posts: 1713585561

View Profile Personal Message (Offline)

Ignore
1713585561
Reply with quote  #2

1713585561
Report to moderator
1713585561
Hero Member
*
Offline Offline

Posts: 1713585561

View Profile Personal Message (Offline)

Ignore
1713585561
Reply with quote  #2

1713585561
Report to moderator
collapse
Full Member
***
Offline Offline

Activity: 206
Merit: 102


step forward


View Profile
September 05, 2018, 10:08:53 PM
 #1382

Anyone know how I can lock unspent vout's? Unfortunately I found no method like "lockunspent" in other currencies. Is there something similar in NTRN?

You can use "sendfrom <fromaccount> <toNeutronaddress> <amount> [minconf=1] [comment] [comment-to]" with different addresses in same wallet. Or send the exact quantity (fee included) that input has from listunspent.

Elacoin-ELC,Betacoin-BET,Neutroncoin-NTRN,Americancoin-AMC,Stronghands-SHND,Craftcoin-CRC,DOGE,BCH,BTC,...,Bitcoin,...(and a lot more)
Linux updated wallets (source code) for: ELC, BET, AMC, NKT, SLING, CRC,...
[if (blocknumber > 115000) maxblocksize=largerlimit]   [I don't think the threshold should ever be 0.  We should always allow at least some free transactions.]
audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 07, 2018, 07:30:09 PM
 #1383

Hello Friends,


Here is a link to the thread for EDU that I have started : https://bitcointalk.org/index.php?topic=5023980.new

I welcome anyone who would like to help elaborate on this thread, or spread the word in reference to searching for folks to build a community with.

There are many folks here on bitcointalk that have tons of awesome info,, would love to see them register and transcribe some of their material.

Anyhow, if you have the time, we would love your help and friendship.


Thanks for your time, be kind.

[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
kelseydustin
Sr. Member
****
Offline Offline

Activity: 448
Merit: 251


View Profile
September 10, 2018, 09:17:54 AM
 #1384

What is the advantage of being masternode?
It is more profitable than just investing, while there is no coin growth, the masternoda works, and brings you coins, a kind of mining.
asor
Hero Member
*****
Offline Offline

Activity: 809
Merit: 1008



View Profile
September 10, 2018, 07:30:18 PM
 #1385

Hi! When I try to call "createrawtransaction" via json-rpc, I'm getting the error "Invalid parameter, missing vout key".
In my opinion there's a bug in rpcrawtransaction.cpp on line 253:

https://github.com/neutroncoin/neutron/blob/a1640b0e9e7c34176762f7c8b9dbf5465bba4528/src/rpcrawtransaction.cpp#L253

The line checks if vout_v is null and negates it. So, if I pass valid vout indices to "createrawtransaction", they are valid so that "isNull()" returns false.
But because of the negation it returns with the error that my valid vout's are invalid. I think the line should look like:

Code:
if (!vout_v.isNum())

Anyone can confirm that this is a bug?
Connufeepa
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
September 10, 2018, 07:36:03 PM
 #1386

I'm glad that I invested in this plan and I think it will only go up from here. If the team is able to bring what they've done so far im 100% sure this idea is here to stay and really be one of the better businesss out there.
collapse
Full Member
***
Offline Offline

Activity: 206
Merit: 102


step forward


View Profile
September 10, 2018, 08:56:09 PM
 #1387

Hi! When I try to call "createrawtransaction" via json-rpc, I'm getting the error "Invalid parameter, missing vout key".
In my opinion there's a bug in rpcrawtransaction.cpp on line 253:

https://github.com/neutroncoin/neutron/blob/a1640b0e9e7c34176762f7c8b9dbf5465bba4528/src/rpcrawtransaction.cpp#L253

The line checks if vout_v is null and negates it. So, if I pass valid vout indices to "createrawtransaction", they are valid so that "isNull()" returns false.
But because of the negation it returns with the error that my valid vout's are invalid. I think the line should look like:

Code:
if (!vout_v.isNum())

Anyone can confirm that this is a bug?

Seems a bug.
Submit a new issue https://github.com/neutroncoin/neutron/issues

You can test the code of other coins (DASH):
     
Code:
 if (!vout_v.isNum())
            throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, missing vout key");
        int nOutput = vout_v.get_int();
        if (nOutput < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, vout must be positive");

Elacoin-ELC,Betacoin-BET,Neutroncoin-NTRN,Americancoin-AMC,Stronghands-SHND,Craftcoin-CRC,DOGE,BCH,BTC,...,Bitcoin,...(and a lot more)
Linux updated wallets (source code) for: ELC, BET, AMC, NKT, SLING, CRC,...
[if (blocknumber > 115000) maxblocksize=largerlimit]   [I don't think the threshold should ever be 0.  We should always allow at least some free transactions.]
audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 10, 2018, 11:54:52 PM
 #1388

Good day, there.
Certainly, agree with the fact that the Internet has become the first part of the revolution. The other part is the technology of blockchain and cryptocurrency. I hope you devs realize these plans and will give guaranteed revenues to the crypto industry


.... These newbie accounts with pointless broad general statements, are getting frustrating.

[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 10, 2018, 11:56:56 PM
 #1389

Hi! When I try to call "createrawtransaction" via json-rpc, I'm getting the error "Invalid parameter, missing vout key".
In my opinion there's a bug in rpcrawtransaction.cpp on line 253:

https://github.com/neutroncoin/neutron/blob/a1640b0e9e7c34176762f7c8b9dbf5465bba4528/src/rpcrawtransaction.cpp#L253

The line checks if vout_v is null and negates it. So, if I pass valid vout indices to "createrawtransaction", they are valid so that "isNull()" returns false.
But because of the negation it returns with the error that my valid vout's are invalid. I think the line should look like:

Code:
if (!vout_v.isNum())

Anyone can confirm that this is a bug?

Seems a bug.
Submit a new issue https://github.com/neutroncoin/neutron/issues

You can test the code of other coins (DASH):
     
Code:
 if (!vout_v.isNum())
            throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, missing vout key");
        int nOutput = vout_v.get_int();
        if (nOutput < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, vout must be positive");



Thank you, we will have a look and repair.

[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 11, 2018, 04:28:50 PM
 #1390

Hey,
I have just one question to you. What is the amount or percentage of funds from ICO that will be alocated for advertising and marketing?



There is no ICO, there never was and never will be, I dislike ICOs. Please go clutter up another thread.

[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 12, 2018, 01:08:48 AM
Last edit: September 12, 2018, 03:32:31 AM by audiotopix
 #1391

Market be more and more manipulative. It'snot so good situation. Investing in few altcoins in which technology you believe it's everything which i recommend to you.


Ok this is just getting completely stupid, seriously WTF is going on? Newbies with spam posts are ruining the continuity of our threads.

[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
kumerea
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
September 12, 2018, 05:40:13 AM
 #1392



Questions, Comments, Suggestions?
Email us:
[/quote]

Aiodex’s Referral Program will give you 20% -80% commission from their transaction fee for 7 years. The value will be calculated starting from the date the member you invite sign up. Starting from the first year is 20%, after each year increased to 10% from the first day of next year. For the 300K members who are enjoying the transaction fee refund policy, if they are one of your invited members, you will receive a commission until the system start charging their transaction fees. For example, if the new system start charging from 2020–01–01, you will start receiving commissions and since it is the second year then you will receive 30%.
Sign up now to claim your reward ☞ https://aiodex.com/?ref=5b45a599c7165734d36bb3fc
https://i.imgur.com/aGJudB0.png
audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 14, 2018, 03:31:00 PM
 #1393

Please vote for Neutron in the following websites:

a) Masternode Monitoring service (you need to register): https://mnode.club/g/coinvote

b) Aiodex Exchange (you need to register): https://aiodex.com/vote/NTRN

c) Mercatox.com (you need an account and Balance, votes are free) https://mercatox.com/coins/list?name=ntrn&Name=ntrn


And

Aiodex’s Referral Program will give you 20% -80% commission from their transaction fee for 7 years.
The value will be calculated starting from the date the member you invite sign up.
Starting from the first year is 20%, after each year increased to 10% from the first day of next year.
For the 300K members who are enjoying the transaction fee refund policy, if they are one of your invited members, you will receive a commission until the system start charging their transaction fees. For example, if the new system start charging from 2020–01–01, you will start receiving commissions and since it is the second year then you will receive 30%.

Sign up now to claim your reward ☞ https://aiodex.com/?ref=5b45a599c7165734d36bb3fc
https://i.imgur.com/aGJudB0.png

Thanks for your support!




[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 17, 2018, 06:20:02 PM
 #1394

We have been added to https://cryptoshib.com/neutron/

Should be featured on the home page as well, more soon.

[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
Andrey123
Sr. Member
****
Offline Offline

Activity: 1750
Merit: 305



View Profile
September 18, 2018, 09:50:45 AM
 #1395

For the purse, for the computer Rapsberry Pi 3, and no one gave the coin .... very disappointing  Undecided

Hello! Voluntary donations that will go towards the development of my coin.
34bwEhH3GMx6swYXt2NBfFbYGkdTcaWtXz....BTC

audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 19, 2018, 05:11:32 PM
 #1396

For the purse, for the computer Rapsberry Pi 3, and no one gave the coin .... very disappointing  Undecided


Im not sure what you are talking about, care to elaborate?

[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
Andrey123
Sr. Member
****
Offline Offline

Activity: 1750
Merit: 305



View Profile
September 21, 2018, 04:55:08 AM
 #1397

For the purse, for the computer Rapsberry Pi 3, and no one gave the coin .... very disappointing  Undecided


Im not sure what you are talking about, care to elaborate?


I created a purse for your coin.
My post was previously published here.

Hello! Voluntary donations that will go towards the development of my coin.
34bwEhH3GMx6swYXt2NBfFbYGkdTcaWtXz....BTC

audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 24, 2018, 02:35:34 PM
 #1398

For the purse, for the computer Rapsberry Pi 3, and no one gave the coin .... very disappointing  Undecided


Im not sure what you are talking about, care to elaborate?


I created a purse for your coin.
My post was previously published here.


No one gave the coin? We did not hire you to do so. And while your work may be safe it is unofficial, and at this point possibly behind a few versions.

We cannot endorse something that could be a security threat, you should have contacted us direct before saying such here.

Come to our Discord, and lets talk about it.

[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 26, 2018, 08:26:47 PM
 #1399

https://gtmcoin.io/

It is official!
NTRN will be listed and MN hosting will be available on the Gentarium platform
Along with all the features they offer,, Instant MN, shared MN, etc...
Hosting prices are much cheaper than nodeshare

[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
audiotopix (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 512

www.neutroncoin.com


View Profile WWW
September 30, 2018, 02:52:42 AM
 #1400

2 Click Instant MN setup is available through https://mn.gtmcoin.io/ with your hosted masternode.


[]
.████WHITEPAPER  FACEBOOK    TWITTER   DISCORD   TELEGRAM  REDDIT  INSTAGRAM  GITHUB████
MASTERNODESSINCE
2015
.PROOF OF STAKE  ANY AMOUNT
  OF NTRN
EARN    PIGGY
  BANK
[
]
Pages: « 1 ... 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 [70] 71 72 73 74 75 76 77 78 79 »
  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!