Author Topic: New Delegate Support Thread  (Read 4637 times)

0 Members and 1 Guest are viewing this topic.

Offline Riverhead

Also remember to transfer 0.1 BTSX less than your balance or the command will fail.  Ask me how I know /facepalm. #rookie_mistakes

Ggozzo

  • Guest
I've produced over 110 blocks so far since becoming a delegate. I missed 4 as a standby but none since being elected in. I have received zero pay in fees? Have I just been unlucky and producing blocks without any transactions? Or have I set up wrong?

I enabled block production and scan for transactions, is there anything else I should've done?
To see how much you've earned, use:

blockchain_get_account my_delegate_name


Got it thanks. I do have pay!

It doesnt let me withdraw.
I get this:

Code: [Select]
>> wallet_delegate_withdraw_pay skyscraperfarms

Command aborted.

To withdraw, use:
wallet_delegate_withdraw_pay <delegate_name> <to_account_name> <amount_to_withdraw> [memo]

That worked! Thank you!

Offline dannotestein

  • Hero Member
  • *****
  • Posts: 760
    • View Profile
    • BlockTrades International
  • BitShares: btsnow
I've produced over 110 blocks so far since becoming a delegate. I missed 4 as a standby but none since being elected in. I have received zero pay in fees? Have I just been unlucky and producing blocks without any transactions? Or have I set up wrong?

I enabled block production and scan for transactions, is there anything else I should've done?
To see how much you've earned, use:

blockchain_get_account my_delegate_name


Got it thanks. I do have pay!

It doesnt let me withdraw.
I get this:

Code: [Select]
>> wallet_delegate_withdraw_pay skyscraperfarms

Command aborted.

To withdraw, use:
wallet_delegate_withdraw_pay <delegate_name> <to_account_name> <amount_to_withdraw> [memo]
http://blocktrades.us Fast/Safe/High-Liquidity Crypto Coin Converter

Ggozzo

  • Guest
I've produced over 110 blocks so far since becoming a delegate. I missed 4 as a standby but none since being elected in. I have received zero pay in fees? Have I just been unlucky and producing blocks without any transactions? Or have I set up wrong?

I enabled block production and scan for transactions, is there anything else I should've done?
To see how much you've earned, use:

blockchain_get_account my_delegate_name


Got it thanks. I do have pay!

It doesnt let me withdraw.
I get this:

Code: [Select]
>> wallet_delegate_withdraw_pay skyscraperfarms

Command aborted.
« Last Edit: July 23, 2014, 11:11:37 pm by GregGozzo »

Offline dannotestein

  • Hero Member
  • *****
  • Posts: 760
    • View Profile
    • BlockTrades International
  • BitShares: btsnow
I've produced over 110 blocks so far since becoming a delegate. I missed 4 as a standby but none since being elected in. I have received zero pay in fees? Have I just been unlucky and producing blocks without any transactions? Or have I set up wrong?

I enabled block production and scan for transactions, is there anything else I should've done?
To see how much you've earned, use:

blockchain_get_account my_delegate_name
http://blocktrades.us Fast/Safe/High-Liquidity Crypto Coin Converter

Offline puppies

  • Hero Member
  • *****
  • Posts: 1659
    • View Profile
  • BitShares: puppies
I've produced over 110 blocks so far since becoming a delegate. I missed 4 as a standby but none since being elected in. I have received zero pay in fees? Have I just been unlucky and producing blocks without any transactions? Or have I set up wrong?

I enabled block production and scan for transactions, is there anything else I should've done?

You need to withdraw it.  Try help wallet _ withdraw _ delegate _ pay for the syntax
https://metaexchange.info | Bitcoin<->Altcoin exchange | Instant | Safe | Low spreads

Ggozzo

  • Guest
I've produced over 110 blocks so far since becoming a delegate. I missed 4 as a standby but none since being elected in. I have received zero pay in fees? Have I just been unlucky and producing blocks without any transactions? Or have I set up wrong?

I enabled block production and scan for transactions, is there anything else I should've done?

Offline GaltReport

This is a good idea.  I will volunteer but I am just learning myself, by the generosity of others here but if I can help I will.

Notes I have so far:

Build Instructions for Live Network on Ubuntu Server 14.04

sudo apt-get update
sudo apt-get install cmake git libreadline-dev uuid-dev g++ libdb++-dev libdb-dev zip libssl-dev openssl build-essential python-dev autotools-dev libicu-dev libbz2-dev libboost-dev libboost-all-dev

git clone https://github.com/dacsunlimited/bitsharesx.git
cd bitsharesx
git  checkout 0.2.1
git submodule init
Git submodule update
cmake .
make

The instructions above REPLACE the "Download and Build The Client" instructions in the document linked below.  Otherwise, the instructions in the link below are what worked for me and you should continue with them....

https://github.com/BitShares/bitshares_toolkit/wiki/DPOS-initial-delegate-setup

EXCEPT that I didn't have any keys to import so I had to create an account and register a delegate like it is explained here:

https://github.com/BitShares/bitshares_toolkit/wiki/DPOS-Registering-Names-And-Delegates

and by the way you will need some BTSX to register the account.  I had to bum some off someone on the forum since the only BTSX I have is on Bter and I can't withdraw it. 

In order for someone to send you BTSX with an unregistered account, you will need to give them the key shown when you enter the following command in the console:

wallet_list_my_accounts

There is also the suggestion to run NTP for time synchronization with the following instructions that I haven't verified:

sudo apt-get install ntp

Add some servers to the config file.  Add the following to /etc/ntp.conf

server ntp.ubuntu.com
server pool.ntp.org


It would be good if someone could combine the 2 linked docs into a single comprehensive doc... that covers importing keys and/or creating and registering accounts from scatch.  if I have time I will try but I'm short on that these days.  :(

(Please correct any of my mistakes)

I'm using this as a basis for a guide aimed at people who are quite clueless about how to start.http://wiki.bitshares.org/index.php/BitShares_X_Solutions .  Go here and the 2nd question is where I've started to work on this.  After I go through the process myself, I'll have a better howto.

Excellent Idea!
« Last Edit: July 23, 2014, 11:26:47 pm by GaltReport »

Offline gamey

  • Hero Member
  • *****
  • Posts: 2253
    • View Profile
This is a good idea.  I will volunteer but I am just learning myself, by the generosity of others here but if I can help I will.

Notes I have so far:

Build Instructions for Live Network on Ubuntu Server 14.04

sudo apt-get update
sudo apt-get install cmake git libreadline-dev uuid-dev g++ libdb++-dev libdb-dev zip libssl-dev openssl build-essential python-dev autotools-dev libicu-dev libbz2-dev libboost-dev libboost-all-dev

git clone https://github.com/dacsunlimited/bitsharesx.git
cd bitsharesx
git  checkout 0.2.1
git submodule init
Git submodule update
cmake .
make

The instructions above REPLACE the "Download and Build The Client" instructions in the document linked below.  Otherwise, the instructions in the link below are what worked for me and you should continue with them....

https://github.com/BitShares/bitshares_toolkit/wiki/DPOS-initial-delegate-setup

EXCEPT that I didn't have any keys to import so I had to create an account and register a delegate like it is explained here:

https://github.com/BitShares/bitshares_toolkit/wiki/DPOS-Registering-Names-And-Delegates

and by the way you will need some BTSX to register the account.  I had to bum some off someone on the forum since the only BTSX I have is on Bter and I can't withdraw it. 

In order for someone to send you BTSX with an unregistered account, you will need to give them the key shown when you enter the following command in the console:

wallet_list_my_accounts

There is also the suggestion to run NTP for time synchronization with the following instructions that I haven't verified:

sudo apt-get install ntp

Add some servers to the config file.  Add the following to /etc/npd.conf

server ntp.ubuntu.com
server pool.ntp.org


It would be good if someone could combine the 2 linked docs into a single comprehensive doc... that covers importing keys and/or creating and registering accounts from scatch.  if I have time I will try but I'm short on that these days.  :(

(Please correct any of my mistakes)

I'm using this as a basis for a guide aimed at people who are quite clueless about how to start.http://wiki.bitshares.org/index.php/BitShares_X_Solutions .  Go here and the 2nd question is where I've started to work on this.  After I go through the process myself, I'll have a better howto.
I speak for myself and only myself.

Offline GaltReport

This is a good idea.  I will volunteer but I am just learning myself, by the generosity of others here but if I can help I will.

Notes I have so far:

Build Instructions for Live Network on Ubuntu Server 14.04

sudo apt-get update
sudo apt-get install cmake git libreadline-dev uuid-dev g++ libdb++-dev libdb-dev zip libssl-dev openssl build-essential python-dev autotools-dev libicu-dev libbz2-dev libboost-dev libboost-all-dev

git clone https://github.com/dacsunlimited/bitsharesx.git
cd bitsharesx
git  checkout 0.2.1
git submodule init
Git submodule update
cmake .
make

The instructions above REPLACE the "Download and Build The Client" instructions in the document linked below.  Otherwise, the instructions in the link below are what worked for me and you should continue with them....

https://github.com/BitShares/bitshares_toolkit/wiki/DPOS-initial-delegate-setup

EXCEPT that I didn't have any keys to import so I had to create an account and register a delegate like it is explained here:

https://github.com/BitShares/bitshares_toolkit/wiki/DPOS-Registering-Names-And-Delegates

and by the way you will need some BTSX to register the account.  I had to bum some off someone on the forum since the only BTSX I have is on Bter and I can't withdraw it. 

In order for someone to send you BTSX with an unregistered account, you will need to give them the key shown when you enter the following command in the console:

wallet_list_my_accounts

There is also the suggestion to run NTP for time synchronization with the following instructions that I haven't verified:

sudo apt-get install ntp

Add some servers to the config file.  Add the following to /etc/npd.conf

server ntp.ubuntu.com
server pool.ntp.org


It would be good if someone could combine the 2 linked docs into a single comprehensive doc... that covers importing keys and/or creating and registering accounts from scatch.  if I have time I will try but I'm short on that these days.  :(

(Please correct any of my mistakes)
« Last Edit: July 23, 2014, 12:46:29 am by GaltReport »

Offline bytemaster

I see significant amount of messages like this:
--- there are now 113 active connections to the p2p network

Is there a way to filter the console output ?

Edit config.json and go to the loggers section, look for the name "user" and increase the level to "warn" from "debug".

The next question: can I reload the config without restarting the client?

No
For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

Offline emski

  • Hero Member
  • *****
  • Posts: 1282
    • View Profile
    • http://lnkd.in/nPbhxG
I see significant amount of messages like this:
--- there are now 113 active connections to the p2p network

Is there a way to filter the console output ?

Edit config.json and go to the loggers section, look for the name "user" and increase the level to "warn" from "debug".

The next question: can I reload the config without restarting the client?

Offline bytemaster

I see significant amount of messages like this:
--- there are now 113 active connections to the p2p network

Is there a way to filter the console output ?

Edit config.json and go to the loggers section, look for the name "user" and increase the level to "warn" from "debug".
For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

Offline emski

  • Hero Member
  • *****
  • Posts: 1282
    • View Profile
    • http://lnkd.in/nPbhxG
I see significant amount of messages like this:
--- there are now 113 active connections to the p2p network

Is there a way to filter the console output ?

Offline testz

If JakeThePanda will post here the questions, I more than sure what community will help.