Bitcoin Forum
April 19, 2024, 08:35:14 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 12 13 14 15 16 17 18 19 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 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 ... 202 »
  Print  
Author Topic: Feathercoin [FTC]  (Read 460454 times)
xchrix
Hero Member
*****
Offline Offline

Activity: 905
Merit: 1001



View Profile
April 29, 2013, 05:59:13 AM
 #1221

i have added feathercoin charts to my charting website
http://www.cryptocoincharts.info/period-charts.php?period=2-days&resolution=hour&pair=ftc-ltc&market=cryptonit

but i switched the name from LTC/FTC to FTC/LTC .. i think this way it is right. cryptonit got it wrong
its the same as LTC/BTC ... the name of the coin with less value is in front to geht the exchange price right.
"There should not be any signed int. If you've found a signed int somewhere, please tell me (within the next 25 years please) and I'll change it to unsigned int." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713558914
Hero Member
*
Offline Offline

Posts: 1713558914

View Profile Personal Message (Offline)

Ignore
1713558914
Reply with quote  #2

1713558914
Report to moderator
1713558914
Hero Member
*
Offline Offline

Posts: 1713558914

View Profile Personal Message (Offline)

Ignore
1713558914
Reply with quote  #2

1713558914
Report to moderator
markm
Legendary
*
Offline Offline

Activity: 2940
Merit: 1090



View Profile WWW
April 29, 2013, 07:15:04 AM
Last edit: April 29, 2013, 07:37:28 AM by markm
 #1222

Latest git pull of feathercoind does not compile:

Code:
obj/checkpoints.o: file not recognized: File truncated
collect2: error: ld returned 1 exit status
make: *** [feathercoind] Error 1

-MarkM-


Okay. I've just grabbed from GitHub and everything compiles fine on Debain.

If you let me know your exact distro I will try to recreate the problem?

This has been tested on Ubuntu, Debian, CentOS, Win and Mac.

Could you delete your Feathercoin folder and pull fresh from GitHub and try again?

Okay, I cloned https://github.com/FeatherCoin/FeatherCoin.git

Copied makefile.unix to makefile.fedora17

Added -I../../deps/include to the DEFS and -L../../deps/lib to the LIBS += line so it uses my custom openssl that includes the elliptic curves that Fedora leaves out of their distributed openssl. Added BOOST_LIB_SUFFIX = -mt where the comment indicates.

That is all standard stuff I have to do for every *coin.

Then did

make USE_UPNP= -f makefile.fedora17

It does not get far before producing that error.

Are you maybe not compiling it without UPNP?

-MarkM-

Browser-launched Crossfire client now online (select CrossCiv server for Galactic  Milieu)
Free website hosting with PHP, MySQL etc: http://hosting.knotwork.com/
bushstar (OP)
Hero Member
*****
Offline Offline

Activity: 617
Merit: 531


View Profile
April 29, 2013, 07:31:21 AM
 #1223

Latest git pull of feathercoind does not compile:

Code:
obj/checkpoints.o: file not recognized: File truncated
collect2: error: ld returned 1 exit status
make: *** [feathercoind] Error 1

-MarkM-


Okay. I've just grabbed from GitHub and everything compiles fine on Debain.

If you let me know your exact distro I will try to recreate the problem?

This has been tested on Ubuntu, Debian, CentOS, Win and Mac.

Could you delete your Feathercoin folder and pull fresh from GitHub and try again?

Okay, I cloned https://github.com/FeatherCoin/FeatherCoin.git

Copied makefile.unix to makefile.fedora17

Added -I../../deps/include to the DEFS and -L../../deps/lib to the LIBS += line so it uses my custom openssl that includes the elliptic curves that Fedora leaves out of their distributed openssl. Added BOOST_LIB_SUFFIX = -mt where the comment indicates.

That is all standard stuff I have to do for every *coin.

Then did

make USE_UPNP= -f makefile.fedora17

It does not get far before producing that error.

Are you maybe not compiling it without UPNP?

-MarkM-


On *nix I also disable UPNP. Can you try compiling with just the default packages?

Then again I'd doing the same as you on CentOS with OpenSSL. I also compile the latest boost on that distro too. I use export before running make, so export OPENSSL_INCLUDE_PATH=/path/to/ssl and OPENSSL_LIB_PATH=/path/to/ssl, plus the two exports for the Boost libs. I've got a long list of things to work on today but I will find the time to test FTC on Fedora 17 and get back to you.

markm
Legendary
*
Offline Offline

Activity: 2940
Merit: 1090



View Profile WWW
April 29, 2013, 07:37:11 AM
 #1224

I noticed that the make blurbs going by had ABSOLUTE PATHS in them, for some reason they embedded /usr/src/bitcoin/feathercoin-git into all the paths for all their -L and -I stuff.

So, I changed the ../../deps that has always worked with all other coins, including feathercoin itself up until this recent pull, with an absolute path coded into the makefile (a very bad idea as it means other people who try to use makefile.fedora17 will find it does not work unless they place their git clone in the exact same place in the total filesystem as I did) and suddenly it worked.

This is BAD, I think your shell script that makes the build.h header file has been hacked and thereby fucked up, so that suddenly it is putting absolute paths; at least that is the first mechanism that comes to mind for how you manage to go find out where on my filesystem I have chosen to place the git clone and embed that information into the make process, which, did I mention IS BAD.

Please fix this broken behaviour, it is (did I mention?) BAD.

It should be possible for people to put their bitcoin, or altcoins, or cryptocoins, or whatever THEY choose to call it directory anywhere, even in their own home-directrory, put their custom openssl into deps (dependencies) where all the many many many (and growing number) of coins can find it, and go ahead and use existing makefile.fedora15, makefile.fedora16, makefile.fedora17 or whatever according to their version of Fedora. Absolute paths for where the git is cloned into is bad idea.

-MarkM-

Browser-launched Crossfire client now online (select CrossCiv server for Galactic  Milieu)
Free website hosting with PHP, MySQL etc: http://hosting.knotwork.com/
MarKusRomanus
Legendary
*
Offline Offline

Activity: 910
Merit: 1000



View Profile
April 29, 2013, 07:40:15 AM
 #1225

Off Topic.. my Feathercoin pool now has stratum support!  fhc.ub3rl33t.com
stratum+tcp://ftc.ub3rl33t.com:3334

I'm psyched, because it took me long enough to figure out how to implement it.
MarKusRomanus
Legendary
*
Offline Offline

Activity: 910
Merit: 1000



View Profile
April 29, 2013, 08:25:19 AM
 #1226

I just noticed FTC is now on http://www.cryptocoincharts.info
e521
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
April 29, 2013, 08:56:09 AM
 #1227

I just noticed FTC is now on http://www.cryptocoincharts.info

that's great news

xchrix
Hero Member
*****
Offline Offline

Activity: 905
Merit: 1001



View Profile
April 29, 2013, 09:24:05 AM
 #1228


i thought it would be a good idea to be an "early bird" for charting Smiley and maybe the price gets a little pump from it!
if anybody wants to donate a feathercoin or maybe two: 6gtyYCpM8MKRS818xEo7rDpKWQW1m67mML thank you!!
lets make this coin the next successful and alive altcoin..
RetardedMonkey
Newbie
*
Offline Offline

Activity: 42
Merit: 0



View Profile
April 29, 2013, 11:01:40 AM
 #1229

Can you remove that Dig pool from the list of pools?

I was mining there all day then found out the payouts aren't working... sounds like a total scam.
e521
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
April 29, 2013, 01:43:34 PM
 #1230

any other exchange is working of ftc?
cryptonit seems good but it's very very slow

xchrix
Hero Member
*****
Offline Offline

Activity: 905
Merit: 1001



View Profile
April 29, 2013, 02:07:33 PM
 #1231

any other exchange is working of ftc?
cryptonit seems good but it's very very slow

unfortunately i dont know of any other. i saw somebody asked a lot of other exchanges if the want to add here in the forum...
e521
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
April 29, 2013, 02:30:05 PM
 #1232

I really respect cryptonit.net for jumping on board and provide with a platform to trade.
unfortunately it seems an university project, not sure I want to keep my money there that long  Cry

12gaFacelift
Sr. Member
****
Offline Offline

Activity: 277
Merit: 250



View Profile
April 29, 2013, 03:22:01 PM
 #1233

i dont know why people dont like that place, only for FRC thing it was not the best way to do but for other trade or take out my coin i dont have trouble with the site. if you want i can trade them for you on the side.

Never argue with idiots, they just drag you down to their level then beat you with experience. ~ *CANADA ONLY* Colloidal Silver Wire Rod - 12 Gauge Pure Silver .9999 - https://bitcointalk.org/index.php?topic=775964.0

https://bitcointalk.org/index.php?topic=731923.0
https://bitcointalk.org/index.php?topic=1323657.0
Passion_ltc
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


Crypti Community Manager


View Profile
April 29, 2013, 04:11:01 PM
 #1234

i dont know why people dont like that place, only for FRC thing it was not the best way to do but for other trade or take out my coin i dont have trouble with the site. if you want i can trade them for you on the side.
Same. Everything works 100% fine and smooth. Had 1 downtime for 2 minutes in the last 20 hours.

paul21
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
April 29, 2013, 04:13:53 PM
 #1235

i dont know why people dont like that place, only for FRC thing it was not the best way to do but for other trade or take out my coin i dont have trouble with the site. if you want i can trade them for you on the side.
Same. Everything works 100% fine and smooth. Had 1 downtime for 2 minutes in the last 20 hours.

I've only had successful exchanges there, but the site is still annoying with glitches. The chatbox bounces around (not that important) and a lot of the time I'll click my account and get a blank screen and have to refresh a few times to get it to show up and things like that. When I withdrawl and put in my auth code, it gives me a white screen but then still processes the order. The balance of coins isn't automatically updated sometimes, you have to click "details" and "update" to force it to poll the account balance.

Bottom line from me: It's buggy and frustrating sometimes but it hasn't eaten my coins.

RIP my old pools... sometimes BTC isn't life ;(
psybits
Legendary
*
Offline Offline

Activity: 1386
Merit: 1000



View Profile
April 29, 2013, 04:46:58 PM
 #1236

Cryptonit are actively working on the bugs, and they do help if you have a problem. A+++ for getting an FC exchange out there, and being a stand up operation I say.
MarKusRomanus
Legendary
*
Offline Offline

Activity: 910
Merit: 1000



View Profile
April 29, 2013, 05:17:11 PM
 #1237

Everyone..change your FC in your signatures to FTC.
bitdwarf
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


The cryptocoin watcher


View Profile
April 29, 2013, 07:22:10 PM
 #1238

Done. :3

𝖄𝖆𝖈: YF3feU4PNLHrjwa1zV63BcCdWVk5z6DAh5 · 𝕭𝖙𝖈: 12F78M4oaNmyGE5C25ZixarG2Nk6UBEqme
Ɏ: "the altcoin for the everyman, where the sweat on one's brow can be used to cool one's overheating CPU" -- theprofileth
MarKusRomanus
Legendary
*
Offline Offline

Activity: 910
Merit: 1000



View Profile
April 29, 2013, 07:32:45 PM
 #1239

I'm really hoping for a web service or something along those lines for a live feed of trading on FTC.  What about cryptonit?
I can't find anything on their site to suggest this kind of feed is available.
xchrix
Hero Member
*****
Offline Offline

Activity: 905
Merit: 1001



View Profile
April 29, 2013, 07:39:00 PM
 #1240

I'm really hoping for a web service or something along those lines for a live feed of trading on FTC.

dont know exactly what you mean with "live feed of trading"Huh you mean something like bitcoinity?
Pages: « 1 ... 12 13 14 15 16 17 18 19 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 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 ... 202 »
  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!