Giter Site home page Giter Site logo

drk payto doesn't work about encompass HOT 14 CLOSED

bullcandle avatar bullcandle commented on June 2, 2024
drk payto doesn't work

from encompass.

Comments (14)

ELM4Ever avatar ELM4Ever commented on June 2, 2024

The wallet may not have fully downloaded/updated the header file for Dash. The file is about 20 MB. By the error Wallet Not synchronized - I suspect that could be the problem. As with Electrum, the daemon times out after 5 minutes, if no clients uses it.

Also you have a balance of 0.9959, but you are sending 0.9959 + 0.001 in fees, shouldn't it be 0.9949 and 0.001 in fees?

from encompass.

bullcandle avatar bullcandle commented on June 2, 2024

yes, i use "encompress setchain DRK" and generate DRK addresses successfully.
How to sync the wallet ?

root@wallets:~/.encompass# encompass payto XhgzLnhQRtBnMu4UD3jeGqG2wkHivLdRAH 0.9940 -f 0.001
Connected to daemon on port 8001
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/Encompass-0.4.4-py2.7.egg/EGG-INFO/scripts/encompass", line 134, in run_command
result = func(*args[1:])
File "/usr/local/lib/python2.7/dist-packages/Encompass-0.4.4-py2.7.egg/chainkey/commands.py", line 323, in payto
tx = self._mktx([(to_address, amount)], fee, change_addr, domain)
File "/usr/local/lib/python2.7/dist-packages/Encompass-0.4.4-py2.7.egg/chainkey/commands.py", line 312, in _mktx
return self.wallet.mktx(final_outputs, self.password, fee , change_addr, domain)
File "/usr/local/lib/python2.7/dist-packages/Encompass-0.4.4-py2.7.egg/chainkey/wallet.py", line 802, in mktx
tx = self.make_unsigned_transaction(outputs, fee, change_addr, domain, coins)
File "/usr/local/lib/python2.7/dist-packages/Encompass-0.4.4-py2.7.egg/chainkey/wallet.py", line 745, in make_unsigned_transaction
coins = self.get_unspent_coins(domain)
File "/usr/local/lib/python2.7/dist-packages/Encompass-0.4.4-py2.7.egg/chainkey/wallet.py", line 561, in get_unspent_coins
if tx is None: raise Exception("Wallet not synchronized")
Exception: Wallet not synchronized
Exception in thread Thread-2 (most likely raised during interpreter shutdown):Exception in thread Thread-3 (most likely raised during interpreter shutdown):

Traceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_innerTraceback (most recent call last):
File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner
File "/usr/local/lib/python2.7/dist-packages/Encompass-0.4.4-py2.7.egg/chainkey/synchronizer.py", line 65, in run
File "/usr/local/lib/python2.7/dist-packages/Encompass-0.4.4-py2.7.egg/chainkey/verifier.py", line 115, in run
File "/usr/local/lib/python2.7/dist-packages/Encompass-0.4.4-py2.7.egg/chainkey/synchronizer.py", line 127, in run_interface
<type 'exceptions.AttributeError'>: 'NoneType' object has no attribute 'Empty'
<type 'exceptions.AttributeError'>: 'NoneType' object has no attribute 'Empty'

root@wallets:~/.encompass#

from encompass.

guruvan avatar guruvan commented on June 2, 2024

The wallet should sync on it's own once connected to the DASH (DRK) servers.

if you run with encompass -v you can see clearly the current blockheader chunk being process - once the client has processed all the header chunks it will report processing single block numbers.

If this is still an issue once you've fully synced with the server (and have a correct view of the unspent outputs in your wallet) please let us know.

from encompass.

bullcandle avatar bullcandle commented on June 2, 2024

root@wallets:~/.encompass# encompass -v
encompass directory /root/.encompass
blocks: 250918

Is this the correct output ?

from encompass.

guruvan avatar guruvan commented on June 2, 2024

That says you've synced fully.
If this is still an issue, we'll try to duplicate.

from encompass.

bullcandle avatar bullcandle commented on June 2, 2024

yes, i still have issue, do you want to give you access to my box it's test server

from encompass.

guruvan avatar guruvan commented on June 2, 2024

we'll try to duplicate here tonight or in the morning and post results here - if we're unable to duplicate that may be an option.

from encompass.

bullcandle avatar bullcandle commented on June 2, 2024

Ok, thanks! One more question - what distro is used by you ? desktop or server version, because i use ubuntu server without desktop

from encompass.

guruvan avatar guruvan commented on June 2, 2024

Encompass is well tested on ubuntu 14.04, though daemon mode is not as well tested as the gui client.

How have you installed Encompass on your system? There are several different manners to do so.

from encompass.

bullcandle avatar bullcandle commented on June 2, 2024

This is my way step by step:

wget https://github.com/mazaclub/encompass/releases/download/v0.4.4/Encompass-0.4.4.tar.gz
tar -xvf Encompass-0.4.4.tar.gz
cd Encompass-0.4.4
git clone https://github.com/guruvan/darkcoin_hash.git
cd darkcoin_hash/
sudo python2 setup.py install
cd ..
pyrcc4 icons.qrc -o gui/icons_rc.py
python mki18n.py
sudo python setup.py install

from encompass.

ELM4Ever avatar ELM4Ever commented on June 2, 2024

I am using a clone of the master repo (instead of the latest "released" version - like you did).

I have just tried to start a daemon and the transaction went through correctly. Please note that the latest Github commits changed the name of the coin from DRK to DASH (for you to set up the coin correctly in the future).

Like Rob said, it could be Ubuntu 14.10 instead of 14.04 like I am using.

from encompass.

bullcandle avatar bullcandle commented on June 2, 2024

i have downloaded and install desktop version of 14.04. Install and run successfully. After first start i have connection with drk server, now stuck in synchronizing....

from encompass.

Kefkius avatar Kefkius commented on June 2, 2024

I'm confused after reading #69. Has this issue been resolved? If so, could you close the issue?

from encompass.

guruvan avatar guruvan commented on June 2, 2024

We're not able to duplicate the payto issue, so we'll close for now, if this is still an issue with the upcoming 0.5.0 release, please open a fresh issue and we'll investigate further.

from encompass.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.