Pages:
Author

Topic: [ANN][UNIT] Universal Currency | LIFETIME| POW/POS SHA256 | - page 62. (Read 102329 times)

member
Activity: 173
Merit: 12
did dev notice the website is down for a few days ? Or are you working on a new one ?
member
Activity: 88
Merit: 10
http://mnogoblokov.mine.nu unomp-pool with unitcoin too and have full blockchain.
addnode=83.239.114.42
legendary
Activity: 3976
Merit: 2639
this are the nodes showing at coinexchange :

addnode=68.5.1.174
addnode=178.155.194.27
addnode=68.99.151.141
addnode=96.235.160.238
addnode=103.22.181.62
addnode=173.212.202.33
addnode=151.80.230.151
addnode=86.26.119.177
addnode=73.211.90.130


I have connections at my Pi, but always the Wallet hangs (or don't sync) at the sync??
member
Activity: 173
Merit: 12
this are the nodes showing at coinexchange :

addnode=68.5.1.174
addnode=178.155.194.27
addnode=68.99.151.141
addnode=96.235.160.238
addnode=103.22.181.62
addnode=173.212.202.33
addnode=151.80.230.151
addnode=86.26.119.177
addnode=73.211.90.130
legendary
Activity: 3976
Merit: 2639
Anyone habe also sync problems with the wallet?
member
Activity: 189
Merit: 10
So whats your opinion on the segwig matter?  Mine is it would be an ecumenical matter.
hero member
Activity: 1092
Merit: 552
Retired IRCX God
...answer me im important.
  Cheesy That's the 2nd funniest thing I've read all day (and I've spent most of the day reading Bitcoin segwit "debates")!  Cheesy
member
Activity: 189
Merit: 10
What is the best pool to mine on im mining on minertopia is there any better ones, answer me im important.
hero member
Activity: 780
Merit: 501
How can I buy GH/s with UNIT or Tether? The only option is BTC:

full member
Activity: 149
Merit: 100
DONATE address $unit P9XgnurjgmGsXLusQbYidnY4uMqU2Xj2Mo

 Grin
legendary
Activity: 3976
Merit: 2639


Universal Currency
Cryptocurrency For The World





ROADMAP

-> Exchange : OK
-> website, social : OK
-> Online Wallet :  OK
-> Full-Time Dev/PR, ATM, Debit card : Q2-Q3 2017

$UNIT :

Soooo.... It's 2017, Q2-Q3, Per your tentative timeline, How is the debit/ATM dev coming along? I'm SUPER excited to be able to use this feature, so let me know, so I can put it on the radar. THANKS!!!

I hope for a good Exchange, like Cryptopia, Bittrex or Poloniex...
legendary
Activity: 3976
Merit: 2639
What does this mean mate?

Anonymous: You can send coin anonymous -> BTC is not anonymous...
Masternode: For example DASH:

http://dashmasternode.org/what-is-a-masternode/

regards

member
Activity: 189
Merit: 10
What does this mean mate?
legendary
Activity: 3976
Merit: 2639
Unitcoin 1.0.3 will release soon
- anonymous
- masternode

 Grin

any Update?
member
Activity: 189
Merit: 10
My first mined crypto coin ever will go into my wallet soon, very long sync 3 days now but im just happy to have mined:)
member
Activity: 116
Merit: 10
Hello,

Does anyone know of a way to undo a transaction to a yobit exchange wallet that has been under maintenance for weeks?  Without knowing better (newbie), I sent funds to the address provided by their wallet, and did not notice the under maintenance in red.  I have contacted Yobit, but they seem to have little interest in resolving the issue.  I will say, Yobit has lost a future customer in me.

I love solo mining UNIT.  But where to trade up and exchange?  I have looked over every exchange that I could Google.  Any suggestions highly welcomed.

Lost forever?  5875 UNITs?

Status: 22085 confirmations
Date: 5/5/2017 04:54
To: yobit PPe9YjNqfWBmVKFRaJyLcsFeeAoQGBtKb7
Debit: -5375.00 UNIT
Transaction fee: -0.075 UNIT
Net amount: -5375.075 UNIT
Transaction ID: 3a5f95fadc6d0f231ece61e0d5d356ad3722ac4d40fdb71cce8231c9263bacbc


Status: 25168 confirmations
Date: 5/4/2017 18:26
To: yobit PPe9YjNqfWBmVKFRaJyLcsFeeAoQGBtKb7
Debit: -0.1506 UNIT
To: yobit PPe9YjNqfWBmVKFRaJyLcsFeeAoQGBtKb7
Debit: -500.00 UNIT
Transaction fee: -0.016 UNIT
Net amount: -500.1666 UNIT
Transaction ID: 510e62f806912549686fc112385083061c9d1ab338757c30de5aa6c0d34d0d10
legendary
Activity: 3976
Merit: 2639
Why not use "USE_UPNP=-" and be done with the nonsense?
If you need to have a port open for it to work, just open the port manually.  Roll Eyes

Hello,

with
Quote
qmake "USE_UPNP=1"

the same error..
"USE_UPNP=1"
is not
"USE_UPNP=-"

"=1" tells it to build with UPNP (which is the default; so, no, there would not be any change). Just build it without UPNP (which is what the "=-" means) and open port if necessary.

Be in control of your network programs. Wink

THX this are the solution  Grin Grin
hero member
Activity: 1092
Merit: 552
Retired IRCX God
for the record....

Quote
src/net.cpp:1118:72: error: too many arguments to function 'UPNPDev* upnpDiscover(int, const char*, const char*, int, int, int*)'
     devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, 0, 0);

means that, when it goes to build, it's expecting:
Code:
upnpDiscover(int, const char*, const char*, int, int, int*)
and line number 1118 of the file net.cpp is feeding it:
Code:
upnpDiscover(int, const char*, const char*, int, int, int, int*)
So it has no clue what the last 0 is or what to do with it.
 Roll Eyes

hero member
Activity: 1092
Merit: 552
Retired IRCX God
Why not use "USE_UPNP=-" and be done with the nonsense?
If you need to have a port open for it to work, just open the port manually.  Roll Eyes

Hello,

with
Quote
qmake "USE_UPNP=1"

the same error..
"USE_UPNP=1"
is not
"USE_UPNP=-"

"=1" tells it to build with UPNP (which is the default; so, no, there would not be any change). Just build it without UPNP (which is what the "=-" means) and open port if necessary.

Be in control of your network programs. Wink
legendary
Activity: 3976
Merit: 2639
Why not use "USE_UPNP=-" and be done with the nonsense?
If you need to have a port open for it to work, just open the port manually.  Roll Eyes

Hello,

with
Quote
qmake "USE_UPNP=1"

the same error..
Pages:
Jump to: