Skip to content
Snippets Groups Projects
Commit 1e033402 authored by Holger's avatar Holger
Browse files

reverting change to operationsid for HF24, please uncoment line 158 in file...

reverting change to operationsid for HF24, please uncoment line 158 in file beembase\operationids.py for using in HF25
parent 108e2e25
No related branches found
No related tags found
1 merge request!11Changes specific to HF25 done in https://github.com/holgern/beem master branch
Changelog
========
0.24.26
-------
* reverting change to operationsid for HF24, please uncoment line 158 in file beembase\operationids.py for using in HF25
0.24.25
-------
* More robust HIVE_CHAIN_ID detection
......
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.24.25'
version = '0.24.26'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.24.25'
version = '0.24.26'
# -*- coding: utf-8 -*-
#: Operation ids
ops = [
ops_HF25 = [
'vote',
'comment',
'transfer',
......@@ -77,7 +77,85 @@ ops = [
'ineffective_delete_comment',
'sps_convert'
]
ops = [
'vote',
'comment',
'transfer',
'transfer_to_vesting',
'withdraw_vesting',
'limit_order_create',
'limit_order_cancel',
'feed_publish',
'convert',
'account_create',
'account_update',
'witness_update',
'account_witness_vote',
'account_witness_proxy',
'pow',
'custom',
'report_over_production',
'delete_comment',
'custom_json',
'comment_options',
'set_withdraw_vesting_route',
'limit_order_create2',
'claim_account',
'create_claimed_account',
'request_account_recovery',
'recover_account',
'change_recovery_account',
'escrow_transfer',
'escrow_dispute',
'escrow_release',
'pow2',
'escrow_approve',
'transfer_to_savings',
'transfer_from_savings',
'cancel_transfer_from_savings',
'custom_binary',
'decline_voting_rights',
'reset_account',
'set_reset_account',
'claim_reward_balance',
'delegate_vesting_shares',
'account_create_with_delegation',
'witness_set_properties',
'account_update2',
'create_proposal',
'update_proposal_votes',
'remove_proposal',
'update_proposal',
'fill_convert_request',
'author_reward',
'curation_reward',
'comment_reward',
'liquidity_reward',
'producer_reward',
'interest',
'fill_vesting_withdraw',
'fill_order',
'shutdown_witness',
'fill_transfer_from_savings',
'hardfork',
'comment_payout_update',
'return_vesting_delegation',
'comment_benefactor_reward',
'producer_reward',
'clear_null_account_balance',
'proposal_pay',
'sps_fund',
'hardfork_hive',
'hardfork_hive_restore',
'delayed_voting',
'consolidate_treasury_balance',
'effective_comment_vote',
'ineffective_delete_comment',
'sps_convert'
]
operations = {o: ops.index(o) for o in ops}
# uncoment when using with HF25
# operations = {o: ops_HF25.index(o) for o in ops_HF25}
def getOperationNameForId(i):
......
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.24.25'
version = '0.24.26'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.24.25'
version = '0.24.26'
......@@ -16,7 +16,7 @@ except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.24.25'
VERSION = '0.24.26'
tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment