Author

Topic: [ANN][XCP] Counterparty - Pioneering Peer-to-Peer Finance - Official Thread - page 567. (Read 1276933 times)

sr. member
Activity: 476
Merit: 300
Counterparty Chief Scientist and Co-Founder
I am getting another error in the "market". What anyone else?

Code:
Feeds
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 661, i
n
    market(args.give_asset, args.get_asset)
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 79, in
 market
    print(str(table))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 34, in write
    self.__convertor.write(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 115, in write
    self.write_and_convert(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 142, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 147, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\counterpartyd_build\env\lib\encodings\cp850.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_map)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\u2026' in position
693: character maps to

The Windows terminal has trouble with Unicode. I'll try to write a workaround.

There's a partial fix in the master branch now. I don't have a Windows computer, however, so it's pretty much untested. Let me know if it works!

No, sorry PhantomPhreak. It is not working. Here is the error message:

Code:
Feeds
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 667, i
n
    market(args.give_asset, args.get_asset)
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 86, in
 market
    print_(str(table))
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 33, in
 print_
    print(foo.encode('utf-8').decode('latin-1'))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 34, in write
    self.__convertor.write(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 115, in write
    self.write_and_convert(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 142, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 147, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\counterpartyd_build\env\lib\encodings\cp850.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_map)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\x80' in position 69
4: character maps to

Even the run.py wallet is not working anymore (was working before). Error:

Code:
C:\counterpartyd_build>run.py wallet
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 634, i
n
    print_()
TypeError: print_() takes exactly 1 argument (0 given)


I guess that your best bet is to use an old version for now. xnova usually handles the Windows support, and he should be able to fix the issue soon.

I've reverted that commit, of course.
newbie
Activity: 56
Merit: 0
Install bitcoin, install the counterparty client, place an order:

C:\counterpartyd>python counterpartyd.py order
usage: counterpartyd order [-h] --from SOURCE --get-quantity GET_QUANTITY
                           --get-asset GET_ASSET --give-quantity GIVE_QUANTITY
                           --give-asset GIVE_ASSET --expiration EXPIRATION
                           [--fee_required FEE_REQUIRED]
                           [--fee_provided FEE_PROVIDED]

GET_ASSET would be XCP and GIVE_ASSET would be BTC if buying XCP. Expiration is in blocks.

Submit, and wait for an order match. Then use btcpay to pay for the order.

There, completely trustless and decentralized.



So if I want to sell 800 XCP for 8 BTC I would place the following order:

C:\counterpartyd>python counterpartyd.py order
usage: counterpartyd order [-h] --from SOURCE --get-quantity GET_QUANTITY
                           --get-asset GET_ASSET --give-quantity GIVE_QUANTITY
                           --give-asset GIVE_ASSET --expiration EXPIRATION
                           [--fee_required FEE_REQUIRED]
                           [--fee_provided FEE_PROVIDED]

GET_QUANTITY is 8
GET_ASSET is BTC
GIVE_QUANTITY is 800
GIVE_ASSET is XCP

EXPIRATION is the actual block number I want it to expire at? example: 283905

What do I input for SOURCE, FEE_REQUIRED, AND FEE_PROVIDED?

Code:
$ counterpartyd.py order --help
usage: counterpartyd order [-h] --from SOURCE --get-quantity GET_QUANTITY
                           --get-asset GET_ASSET --give-quantity GIVE_QUANTITY
                           --give-asset GIVE_ASSET --expiration EXPIRATION
                           [--fee_required FEE_REQUIRED]
                           [--fee_provided FEE_PROVIDED]

optional arguments:
  -h, --help            show this help message and exit
  --from SOURCE         the source address
  --get-quantity GET_QUANTITY
                        the quantity of GET_ASSET that you would like to
                        receive
  --get-asset GET_ASSET
                        the asset that you would like to sell
  --give-quantity GIVE_QUANTITY
                        the quantity of GIVE_ASSET that you are willing to
                        give
  --give-asset GIVE_ASSET
                        the asset that you would like to buy
  --expiration EXPIRATION
                        the number of blocks for which the order should be
                        valid
  --fee_required FEE_REQUIRED
                        the miners' fee required to be paid by orders for them
                        to match this one; in BTC; required iff buying BTC
                        (may be zero, though)
  --fee_provided FEE_PROVIDED
                        the miners' fee provided; in BTC; required iff selling
                        BTC (should not be lower than is required for
                        acceptance in a block)
$

If GET_QUANTITY is the quantity of GET_ASSET you would like to receive

Shouldn't GET_ASSET be the asset you would like to receive (buy)?


It looks to me like the words "buy" and "sell" are mixed up in the above code.
sr. member
Activity: 476
Merit: 300
Counterparty Chief Scientist and Co-Founder
Install bitcoin, install the counterparty client, place an order:

C:\counterpartyd>python counterpartyd.py order
usage: counterpartyd order [-h] --from SOURCE --get-quantity GET_QUANTITY
                           --get-asset GET_ASSET --give-quantity GIVE_QUANTITY
                           --give-asset GIVE_ASSET --expiration EXPIRATION
                           [--fee_required FEE_REQUIRED]
                           [--fee_provided FEE_PROVIDED]

GET_ASSET would be XCP and GIVE_ASSET would be BTC if buying XCP. Expiration is in blocks.

Submit, and wait for an order match. Then use btcpay to pay for the order.

There, completely trustless and decentralized.



So if I want to sell 800 XCP for 8 BTC I would place the following order:

C:\counterpartyd>python counterpartyd.py order
usage: counterpartyd order [-h] --from SOURCE --get-quantity GET_QUANTITY
                           --get-asset GET_ASSET --give-quantity GIVE_QUANTITY
                           --give-asset GIVE_ASSET --expiration EXPIRATION
                           [--fee_required FEE_REQUIRED]
                           [--fee_provided FEE_PROVIDED]

GET_QUANTITY is 8
GET_ASSET is BTC
GIVE_QUANTITY is 800
GIVE_ASSET is XCP

EXPIRATION is the actual block number I want it to expire at? example: 283905

What do I input for SOURCE, FEE_REQUIRED, AND FEE_PROVIDED?

Code:
$ counterpartyd.py order --help
usage: counterpartyd order [-h] --from SOURCE --get-quantity GET_QUANTITY
                           --get-asset GET_ASSET --give-quantity GIVE_QUANTITY
                           --give-asset GIVE_ASSET --expiration EXPIRATION
                           [--fee_required FEE_REQUIRED]
                           [--fee_provided FEE_PROVIDED]

optional arguments:
  -h, --help            show this help message and exit
  --from SOURCE         the source address
  --get-quantity GET_QUANTITY
                        the quantity of GET_ASSET that you would like to
                        receive
  --get-asset GET_ASSET
                        the asset that you would like to sell
  --give-quantity GIVE_QUANTITY
                        the quantity of GIVE_ASSET that you are willing to
                        give
  --give-asset GIVE_ASSET
                        the asset that you would like to buy
  --expiration EXPIRATION
                        the number of blocks for which the order should be
                        valid
  --fee_required FEE_REQUIRED
                        the miners' fee required to be paid by orders for them
                        to match this one; in BTC; required iff buying BTC
                        (may be zero, though)
  --fee_provided FEE_PROVIDED
                        the miners' fee provided; in BTC; required iff selling
                        BTC (should not be lower than is required for
                        acceptance in a block)
$
newbie
Activity: 58
Merit: 0
I am getting another error in the "market". What anyone else?

Code:
Feeds
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 661, i
n
    market(args.give_asset, args.get_asset)
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 79, in
 market
    print(str(table))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 34, in write
    self.__convertor.write(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 115, in write
    self.write_and_convert(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 142, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 147, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\counterpartyd_build\env\lib\encodings\cp850.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_map)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\u2026' in position
693: character maps to

The Windows terminal has trouble with Unicode. I'll try to write a workaround.

There's a partial fix in the master branch now. I don't have a Windows computer, however, so it's pretty much untested. Let me know if it works!

No, sorry PhantomPhreak. It is not working. Here is the error message:

Code:
Feeds
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 667, i
n
    market(args.give_asset, args.get_asset)
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 86, in
 market
    print_(str(table))
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 33, in
 print_
    print(foo.encode('utf-8').decode('latin-1'))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 34, in write
    self.__convertor.write(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 115, in write
    self.write_and_convert(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 142, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 147, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\counterpartyd_build\env\lib\encodings\cp850.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_map)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\x80' in position 69
4: character maps to

Even the run.py wallet is not working anymore (was working before). Error:

Code:
C:\counterpartyd_build>run.py wallet
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 634, i
n
    print_()
TypeError: print_() takes exactly 1 argument (0 given)
newbie
Activity: 56
Merit: 0
Install bitcoin, install the counterparty client, place an order:

C:\counterpartyd>python counterpartyd.py order
usage: counterpartyd order [-h] --from SOURCE --get-quantity GET_QUANTITY
                           --get-asset GET_ASSET --give-quantity GIVE_QUANTITY
                           --give-asset GIVE_ASSET --expiration EXPIRATION
                           [--fee_required FEE_REQUIRED]
                           [--fee_provided FEE_PROVIDED]

GET_ASSET would be XCP and GIVE_ASSET would be BTC if buying XCP. Expiration is in blocks.

Submit, and wait for an order match. Then use btcpay to pay for the order.

There, completely trustless and decentralized.



So if I want to sell 800 XCP for 8 BTC I would place the following order:

C:\counterpartyd>python counterpartyd.py order
usage: counterpartyd order [-h] --from SOURCE --get-quantity GET_QUANTITY
                           --get-asset GET_ASSET --give-quantity GIVE_QUANTITY
                           --give-asset GIVE_ASSET --expiration EXPIRATION
                           [--fee_required FEE_REQUIRED]
                           [--fee_provided FEE_PROVIDED]

GET_QUANTITY is 8
GET_ASSET is BTC
GIVE_QUANTITY is 800
GIVE_ASSET is XCP

EXPIRATION is the actual block number I want it to expire at? example: 283905

What do I input for SOURCE, FEE_REQUIRED, AND FEE_PROVIDED?
sr. member
Activity: 476
Merit: 300
Counterparty Chief Scientist and Co-Founder
I am getting another error in the "market". What anyone else?

Code:
Feeds
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 661, i
n
    market(args.give_asset, args.get_asset)
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 79, in
 market
    print(str(table))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 34, in write
    self.__convertor.write(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 115, in write
    self.write_and_convert(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 142, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 147, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\counterpartyd_build\env\lib\encodings\cp850.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_map)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\u2026' in position
693: character maps to

The Windows terminal has trouble with Unicode. I'll try to write a workaround.

There's a partial fix in the master branch now. I don't have a Windows computer, however, so it's pretty much untested. Let me know if it works!
sr. member
Activity: 390
Merit: 254
Counterparty Developer
I am trying to install the Counterpartyd client on a Windows machine.  I have followed the instructions: http://counterpartyd-build.readthedocs.org/en/latest/BuildingFromSource.html#on-windows.  I am at the "Running from Source" step (command: C:\counterpartyd_build>C:\Python32\python.exe run.py server), but I get the following error in the cmd.exe box:

++++++++

Traceback (most recent call last):
   File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 397, in
                int(config.RPC_PORT)
ValueError: invalid literal for int() with base 10: ''

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
   File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 400, in
                raise Exception("Please specific a valid port number rpc-port configuration parameter")
Exception: Please specific a valid port number rpc-port configuration parameter

++++++++

Does anyone know what I am doing wrong?

I am so excited to get Counterparty installed!!!



Can someone please help troubleshoot this error message?


Any ideas?  Feeling pretty frustrated.

Add a port to your counterparty.conf in AppData/Counterparty folder. I use port 4000.

Yes, in your counterparty.conf, try adding: rpc-port=4000

I modified the setup code so it doesn't add this rpc-port= line anymore (it shouldn't matter though, since counterparty should use the default if it's blank)
legendary
Activity: 1320
Merit: 1007
I am trying to install the Counterpartyd client on a Windows machine.  I have followed the instructions: http://counterpartyd-build.readthedocs.org/en/latest/BuildingFromSource.html#on-windows.  I am at the "Running from Source" step (command: C:\counterpartyd_build>C:\Python32\python.exe run.py server), but I get the following error in the cmd.exe box:

++++++++

Traceback (most recent call last):
   File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 397, in
                int(config.RPC_PORT)
ValueError: invalid literal for int() with base 10: ''

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
   File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 400, in
                raise Exception("Please specific a valid port number rpc-port configuration parameter")
Exception: Please specific a valid port number rpc-port configuration parameter

++++++++

Does anyone know what I am doing wrong?

I am so excited to get Counterparty installed!!!



Can someone please help troubleshoot this error message?


Any ideas?  Feeling pretty frustrated.

Add a port to your counterparty.conf in AppData/Counterparty folder. I use port 4000.
member
Activity: 82
Merit: 10
I am trying to install the Counterpartyd client on a Windows machine.  I have followed the instructions: http://counterpartyd-build.readthedocs.org/en/latest/BuildingFromSource.html#on-windows.  I am at the "Running from Source" step (command: C:\counterpartyd_build>C:\Python32\python.exe run.py server), but I get the following error in the cmd.exe box:

++++++++

Traceback (most recent call last):
   File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 397, in
                int(config.RPC_PORT)
ValueError: invalid literal for int() with base 10: ''

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
   File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 400, in
                raise Exception("Please specific a valid port number rpc-port configuration parameter")
Exception: Please specific a valid port number rpc-port configuration parameter

++++++++

Does anyone know what I am doing wrong?

I am so excited to get Counterparty installed!!!



Can someone please help troubleshoot this error message?


Any ideas?  Feeling pretty frustrated.
newbie
Activity: 56
Merit: 0
I have set up an XCP buy/sell thread here:

https://bitcointalk.org/index.php?topic=445740.new#new

And here is the corresponding Google Doc order book which I will keep updated as quickly as I can:

https://docs.google.com/spreadsheet/ccc?key=0ArOlTj1IBke6dG1SRzRGRG5IQXpUV05XRFVGNlg0VGc#gid=0

I'm selling 800 XCP for 8 BTC over in the buy/sell thread.

PM me if you're interested.


.01 BTC/XCP gives XCP a market cap of 26,487 BTC.

This puts XCP as the #10 crypto on http://coinmarketcap.com/

Right above ProtoShares and right below Quark.

Price could easily double up to 50,000 BTC market cap in the coming weeks.
sr. member
Activity: 476
Merit: 300
Counterparty Chief Scientist and Co-Founder
I am getting another error in the "market". What anyone else?

Code:
Feeds
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 661, i
n
    market(args.give_asset, args.get_asset)
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 79, in
 market
    print(str(table))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 34, in write
    self.__convertor.write(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 115, in write
    self.write_and_convert(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 142, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 147, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\counterpartyd_build\env\lib\encodings\cp850.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_map)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\u2026' in position
693: character maps to

The Windows terminal has trouble with Unicode. I'll try to write a workaround.
newbie
Activity: 58
Merit: 0
I am getting another error in the "market". What anyone else?

Code:
Feeds
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 661, i
n
    market(args.give_asset, args.get_asset)
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 79, in
 market
    print(str(table))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 34, in write
    self.__convertor.write(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 115, in write
    self.write_and_convert(text)
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 142, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\counterpartyd_build\env\lib\site-packages\colorama\ansitowin32.py", l
ine 147, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\counterpartyd_build\env\lib\encodings\cp850.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_map)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\u2026' in position
693: character maps to
newbie
Activity: 58
Merit: 0
Ok, i am getting error messages since the last Block. Any idea, guys?

Code:
Block: 283811
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 682, i
n
    blocks.follow(db)
  File "C:\counterpartyd_build\dist\counterpartyd\lib\blocks.py", line 534, in f
ollow
    parse_block(db, block_index)
  File "C:\counterpartyd_build\dist\counterpartyd\lib\blocks.py", line 39, in pa
rse_block
    burn.parse(db, tx)
  File "C:\counterpartyd_build\dist\counterpartyd\lib\burn.py", line 76, in pars
e
    'burned': burned,
UnboundLocalError: local variable 'burned' referenced before assignment

I'm on it.

I pushed a hotfix to the master branch, but develop should have been fine. But Blockscan is stuck, and I thought that it was running on develop...

If you're getting the error, what branch are you on?

I am on master. It works now after the hotfix. Thank you very much Smiley
legendary
Activity: 1708
Merit: 1000
Reality is stranger than fiction
OMG this will get much bigger than MSC.
full member
Activity: 238
Merit: 100
Is there a simple way to confirm my XCP balance?  I am reindexing my BTC wallet and still having technical problems with Counterparty but would like to have some peace of mind that my burn worked and what # of XCP I received.
Use blockscan.com
hero member
Activity: 602
Merit: 500
Announcement: Counterparty's official forum is up-and-running: https://forums.counterparty.co/!

We understand the transition to the official forum will not be immediate, and we will do our best to assure that it is as smooth as possible. Having said that, we believe that the Counterparty community has already become too large to stay well organized on the main bitcointalk thread, and having multiple threads on bitcointalk inevitably fragments the community. We hope that having a dedicated forum will give us the space needed for the project and community to grow while also keeping the community cohesive.

Many thanks to the community for all of its support and involvement throughout the burn period.

-The Counterparty Team
Thanks for your team's great work!
XCP is gainning many firsts!
sr. member
Activity: 476
Merit: 300
Counterparty Chief Scientist and Co-Founder
Ok, i am getting error messages since the last Block. Any idea, guys?

Code:
Block: 283811
Traceback (most recent call last):
  File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 682, i
n
    blocks.follow(db)
  File "C:\counterpartyd_build\dist\counterpartyd\lib\blocks.py", line 534, in f
ollow
    parse_block(db, block_index)
  File "C:\counterpartyd_build\dist\counterpartyd\lib\blocks.py", line 39, in pa
rse_block
    burn.parse(db, tx)
  File "C:\counterpartyd_build\dist\counterpartyd\lib\burn.py", line 76, in pars
e
    'burned': burned,
UnboundLocalError: local variable 'burned' referenced before assignment

I'm on it.

I pushed a hotfix to the master branch, but develop should have been fine. But Blockscan is stuck, and I thought that it was running on develop...

If you're getting the error, what branch are you on?
full member
Activity: 216
Merit: 100
Official Counterparty Forums are
live!


We understand the transition to the official forum will not be immediate, and we will do our best to assure that it is as smooth as possible. Having said that, we believe that the Counterparty community has already become too large to stay well organized on the main bitcointalk thread, and having multiple threads on bitcointalk inevitably fragments the community. We hope that having a dedicated forum will give us the space needed for the project and community to grow while also keeping the community cohesive.

Many thanks to the community for all of its support and involvement throughout the burn period.

-The Counterparty Team
member
Activity: 82
Merit: 10
I am trying to install the Counterpartyd client on a Windows machine.  I have followed the instructions: http://counterpartyd-build.readthedocs.org/en/latest/BuildingFromSource.html#on-windows.  I am at the "Running from Source" step, but I get the following error in the cmd.exe box:

++++++++
C:\counterpartyd_build>C:\Python32\python.exe run.py server


Traceback (most recent call last):
   File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 397, in
                int(config.RPC_PORT)
ValueError: invalid literal for int() with base 10: ''

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
   File "C:\counterpartyd_build\dist\counterpartyd\counterpartyd.py", line 400, in
                raise Exception("Please specific a valid port number rpc-port configuration parameter")
Exception: Please specific a valid port number rpc-port configuration parameter

++++++++

Does anyone know what I am doing wrong?

I am so excited to get Counterparty installed!!!



Can someone please help troubleshoot this error message?
legendary
Activity: 882
Merit: 1002
Jump to: