Pages:
Author

Topic: ... - page 7. (Read 214761 times)

sr. member
Activity: 596
Merit: 251
October 11, 2015, 04:50:22 AM
I have posted the 4-month timeline. Cool

https://talk.vanillacoin.net/topic/221/4-month-timeline

Thank you for your support.
sr. member
Activity: 596
Merit: 251
October 04, 2015, 04:16:27 PM
Roger Ver of bitcoin.com has opened a Vanillacoin sub-forum for us: https://forum.bitcoin.com/vanillacoin-f76/ Cool

Thank you for your support.
sr. member
Activity: 596
Merit: 251
September 28, 2015, 06:25:23 PM
Version 0.3.7 Beta has been released. Cool

https://talk.vanillacoin.net/topic/214/version-0-3-7-beta-release

Thank you for your support.
sr. member
Activity: 596
Merit: 251
September 28, 2015, 05:33:16 AM
Reminder: 0.3.7 Mandatory Upgrade Today. Please await ANN or Alert. Cool

Thank you for your support.
legendary
Activity: 896
Merit: 1000
September 24, 2015, 02:24:23 PM
Please stop spamming multiple threads.  Thank you

That's what you just did.
I see my contribution is not appreciated so I'll leave.

I know, but that's because you pasted the same thing on both threads.  You don't have to leave.  I was just asking you to leave your arguments all on one thread.
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
September 24, 2015, 01:37:44 PM
Please stop spamming multiple threads.  Thank you

That's what you just did.
I see my contribution is not appreciated so I'll leave.
legendary
Activity: 896
Merit: 1000
September 24, 2015, 11:08:05 AM
how to build the wallet on linux without compiling boost, db and openssl?
if I already have those libs in the system, why build them again?
(boost is pretty slow to compile, took more that 10 hours on my nas)
VNL doesn't use shared libraries for security reasons (they can be replaced or infected). You must static link all dependencies. Here is a one shot script that you can fire and walk away from: https://github.com/xCoreDev/vanillacoin-scripts Cool

Thank you for your support.

Sorry sir but this doesn't make sense. Following your reasons, I should statically link every library into every wallet or application that can deal with sensitive data, including browsers, terminals, etc. I will end up with tens of occurrencies of every library.
Furthermore, you are recompiling only three libraries, not all of them. You are gonna use libc, aren't you? Can't it be infected as well?
Finally, recompiling is different than statically linking. I can have the static libraries without recompiling, and they are checksum checked when installed.
Cryptographic currencies should not use shared cryptographic libraries, period. libc is not a cryptographic library however boost does contain cryptographic functions that are used. The Bitcoin developers experienced a fork because they allowed the use of shared cryptographic libraries which were replaced during a system upgrade. Ultimately this was caused by gmaxwell's signature bug but brought to light by the upgraded library causing the network to fork. This same bug is what caused the Bitcoin network to recently split into two parts due to a faulty upgrade losing people 100's of thousands of dollars. Ultimately the system security is up to you, so I will leave it at that. Cool

Thank you for your support.

My points are still valid.
And db is not a cryptographic library :-)
And taking about security... You'll need to release a new wallet every time there is a cert on any of those static libraries and find a way to force everyone to upgrade. And for Linux force rebuild of the libraries. It's a nightmare!

See here for reason:
https://bitcointalksearch.org/topic/users-of-bitcoin-core-on-linux-must-not-upgrade-to-the-latest-version-of-openssl-919373

Also, bitcoin core is still forced to make everyone update once in a while.  See April 8, 2014: https://bitcointalksearch.org/topic/bitcoin-core-bitcoin-qt-091-released-update-required-562400

Please stop spamming multiple threads.  Thank you
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
September 23, 2015, 03:02:08 AM
how to build the wallet on linux without compiling boost, db and openssl?
if I already have those libs in the system, why build them again?
(boost is pretty slow to compile, took more that 10 hours on my nas)
VNL doesn't use shared libraries for security reasons (they can be replaced or infected). You must static link all dependencies. Here is a one shot script that you can fire and walk away from: https://github.com/xCoreDev/vanillacoin-scripts Cool

Thank you for your support.

Sorry sir but this doesn't make sense. Following your reasons, I should statically link every library into every wallet or application that can deal with sensitive data, including browsers, terminals, etc. I will end up with tens of occurrencies of every library.
Furthermore, you are recompiling only three libraries, not all of them. You are gonna use libc, aren't you? Can't it be infected as well?
Finally, recompiling is different than statically linking. I can have the static libraries without recompiling, and they are checksum checked when installed.
Cryptographic currencies should not use shared cryptographic libraries, period. libc is not a cryptographic library however boost does contain cryptographic functions that are used. The Bitcoin developers experienced a fork because they allowed the use of shared cryptographic libraries which were replaced during a system upgrade. Ultimately this was caused by gmaxwell's signature bug but brought to light by the upgraded library causing the network to fork. This same bug is what caused the Bitcoin network to recently split into two parts due to a faulty upgrade losing people 100's of thousands of dollars. Ultimately the system security is up to you, so I will leave it at that. Cool

Thank you for your support.

My points are still valid.
And db is not a cryptographic library :-)
And taking about security... You'll need to release a new wallet every time there is a cert on any of those static libraries and find a way to force everyone to upgrade. And for Linux force rebuild of the libraries. It's a nightmare!
sr. member
Activity: 596
Merit: 251
September 22, 2015, 06:05:23 PM
how to build the wallet on linux without compiling boost, db and openssl?
if I already have those libs in the system, why build them again?
(boost is pretty slow to compile, took more that 10 hours on my nas)
VNL doesn't use shared libraries for security reasons (they can be replaced or infected). You must static link all dependencies. Here is a one shot script that you can fire and walk away from: https://github.com/xCoreDev/vanillacoin-scripts Cool

Thank you for your support.

Sorry sir but this doesn't make sense. Following your reasons, I should statically link every library into every wallet or application that can deal with sensitive data, including browsers, terminals, etc. I will end up with tens of occurrencies of every library.
Furthermore, you are recompiling only three libraries, not all of them. You are gonna use libc, aren't you? Can't it be infected as well?
Finally, recompiling is different than statically linking. I can have the static libraries without recompiling, and they are checksum checked when installed.
Cryptographic currencies should not use shared cryptographic libraries, period. libc is not a cryptographic library however boost does contain cryptographic functions that are used. The Bitcoin developers experienced a fork because they allowed the use of shared cryptographic libraries which were replaced during a system upgrade. Ultimately this was caused by gmaxwell's signature bug but brought to light by the upgraded library causing the network to fork. This same bug is what caused the Bitcoin network to recently split into two parts due to a faulty upgrade losing people 100's of thousands of dollars. Ultimately the system security is up to you, so I will leave it at that. Cool

Thank you for your support.
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
September 22, 2015, 03:58:05 AM
how to build the wallet on linux without compiling boost, db and openssl?
if I already have those libs in the system, why build them again?
(boost is pretty slow to compile, took more that 10 hours on my nas)
VNL doesn't use shared libraries for security reasons (they can be replaced or infected). You must static link all dependencies. Here is a one shot script that you can fire and walk away from: https://github.com/xCoreDev/vanillacoin-scripts Cool

Thank you for your support.

Sorry sir but this doesn't make sense. Following your reasons, I should statically link every library into every wallet or application that can deal with sensitive data, including browsers, terminals, etc. I will end up with tens of occurrencies of every library.
Furthermore, you are recompiling only three libraries, not all of them. You are gonna use libc, aren't you? Can't it be infected as well?
Finally, recompiling is different than statically linking. I can have the static libraries without recompiling, and they are checksum checked when installed.
sr. member
Activity: 596
Merit: 251
September 21, 2015, 10:09:41 PM
how to build the wallet on linux without compiling boost, db and openssl?
if I already have those libs in the system, why build them again?
(boost is pretty slow to compile, took more that 10 hours on my nas)
VNL doesn't use shared libraries for security reasons (they can be replaced or infected). You must static link all dependencies. Here is a one shot script that you can fire and walk away from: https://github.com/xCoreDev/vanillacoin-scripts Cool

Thank you for your support.
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
September 21, 2015, 04:14:48 AM
how to build the wallet on linux without compiling boost, db and openssl?
if I already have those libs in the system, why build them again?
(boost is pretty slow to compile, took more that 10 hours on my nas)
sr. member
Activity: 596
Merit: 251
September 18, 2015, 08:37:47 PM
It would be nice to have incentives on the android wallet.
Android is a "client node" so it doesn't help the network by routing and relaying data. Cool

Thank you for your support.
legendary
Activity: 1894
Merit: 1001
September 18, 2015, 05:22:57 PM
It would be nice to have incentives on the android wallet.

while we're there, would it be possible to implement "unlock for staking only" in the windows gui? 10k just sittin' there ...  Roll Eyes

 Wink thanx
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
September 18, 2015, 04:33:30 PM
It would be nice to have incentives on the android wallet.
legendary
Activity: 1354
Merit: 1000
September 18, 2015, 01:29:43 PM
What do i need to do wallet has been open for more than a week and hasn't staked yet .My balance is 1831.
{
    "walletaddress": Votj1RXPrF3UP5yRCimBPXqs5g8xQ7BwJa,
    "collateralrequired": 9999,
    "collateralbalance": 0,
    "networkstatus": firewalled,
    "votecandidate": false,
    "votescore": -27212
}
Thank you for any help

The wallet will stake, just  give it some time. if you want to fix the firewall issue, in the roaming/vanillacoin folder open config.dat. in there will be a port listed, forward that in your router for both tcp and udp  Wink
I followed the instruction, but still "firewalled". In config.dat "tcp":{"port":"36584" which i forwarded.
Edit: after few minutes
{
    "walletaddress": xxx,
    "collateralrequired": 9999,
    "collateralbalance": 0,
    "networkstatus": open,
    "votecandidate": false,
    "votescore": 23633
}

Might need to check for open ports, mate.
It is necessary to prescribe more ip computer in a local network.
newbie
Activity: 28
Merit: 0
September 18, 2015, 03:05:45 AM
What do i need to do wallet has been open for more than a week and hasn't staked yet .My balance is 1831.
{
    "walletaddress": Votj1RXPrF3UP5yRCimBPXqs5g8xQ7BwJa,
    "collateralrequired": 9999,
    "collateralbalance": 0,
    "networkstatus": firewalled,
    "votecandidate": false,
    "votescore": -27212
}
Thank you for any help

The wallet will stake, just  give it some time. if you want to fix the firewall issue, in the roaming/vanillacoin folder open config.dat. in there will be a port listed, forward that in your router for both tcp and udp  Wink
I followed the instruction, but still "firewalled". In config.dat "tcp":{"port":"36584" which i forwarded.
Edit: after few minutes
{
    "walletaddress": xxx,
    "collateralrequired": 9999,
    "collateralbalance": 0,
    "networkstatus": open,
    "votecandidate": false,
    "votescore": 23633
}

Might need to check for open ports, mate.
hero member
Activity: 980
Merit: 1001
September 18, 2015, 03:00:46 AM
Would someone be able to point me to an explanation of what the node inventive system is ?
Thanks  Smiley

Nevermind, found it.
ffr: https://github.com/john-connor/papers/blob/master/node_incentives.pdf
sr. member
Activity: 596
Merit: 251
September 17, 2015, 10:56:44 PM
Version 0.3.6 Beta Release has been released. Cool

https://talk.vanillacoin.net/topic/210/version-0-3-6-beta-release

Thank you for your support.
legendary
Activity: 1191
Merit: 1001
September 17, 2015, 09:32:46 AM
What do i need to do wallet has been open for more than a week and hasn't staked yet .My balance is 1831.
{
    "walletaddress": Votj1RXPrF3UP5yRCimBPXqs5g8xQ7BwJa,
    "collateralrequired": 9999,
    "collateralbalance": 0,
    "networkstatus": firewalled,
    "votecandidate": false,
    "votescore": -27212
}
Thank you for any help

The wallet will stake, just  give it some time. if you want to fix the firewall issue, in the roaming/vanillacoin folder open config.dat. in there will be a port listed, forward that in your router for both tcp and udp  Wink
I followed the instruction, but still "firewalled". In config.dat "tcp":{"port":"36584" which i forwarded.
Edit: after few minutes
{
    "walletaddress": xxx,
    "collateralrequired": 9999,
    "collateralbalance": 0,
    "networkstatus": open,
    "votecandidate": false,
    "votescore": 23633
}
Pages:
Jump to: