gpt4 book ai didi

python - 锯齿波交易错误 : "Tried to set unauthorized address"

转载 作者:行者123 更新时间:2023-11-28 21:33:25 24 4
gpt4 key购买 nike

我正在尝试编写我的自定义事务处理程序。我正在为简单的帐户类编写

class Account:
def __init__(self, name, ac_number, balance):
self.name = name
self.ac_number = ac_number
self.balance = balance

我的 TP 对于单个帐户运行良好。现在我想为多个帐户改进它。为了让每个帐号获得不同的状态,我更改了 _'_get_account_address_' 函数。我正在关注@danintel 的 CookiejarXO_python项目。我正在按照 xo 代码获取地址。

AC_NAMESPACE = hashlib.sha512('account'.encode("utf-8")).hexdigest()[0:6]

def _make_account_address(name):
return AC_NAMESPACE + \
hashlib.sha512(name.encode('utf-8')).hexdigest()[:64]

_get_account_address 工作正常但 _make_account_address 在 cli 中显示错误

Tried to set unauthorized address

enter image description here

我的州代码是

import logging
import hashlib
from sawtooth_sdk.processor.exceptions import InternalError

LOGGER = logging.getLogger(__name__)


FAMILY_NAME = "account"
# TF Prefix is first 6 characters of SHA-512("cookiejar"), a4d219

AC_NAMESPACE = hashlib.sha512('account'.encode("utf-8")).hexdigest()[0:6]


def _make_account_address(name):
return AC_NAMESPACE + \
hashlib.sha512(name.encode('utf-8')).hexdigest()[:64]

def _hash(data):
'''Compute the SHA-512 hash and return the result as hex characters.'''
return hashlib.sha512(data).hexdigest()

def _get_account_address(from_key):
'''
Return the address of a cookiejar object from the cookiejar TF.

The address is the first 6 hex characters from the hash SHA-512(TF name),
plus the result of the hash SHA-512(cookiejar public key).
'''
return _hash(FAMILY_NAME.encode('utf-8'))[0:6] + \
_hash(from_key.encode('utf-8'))[0:64]

class Account:
def __init__(self, name, ac_number, balance):
self.name = name
self.ac_number = ac_number
self.balance = balance


class AccountState:
def __init__(self, context):
self._context = context

def make_account(self, account_obj, from_key):
'''Bake (add) "amount" cookies.'''
account_address = _make_account_address(account_obj.name) # not working
#account_address = _get_account_address(from_key) # working fine
LOGGER.info('Got the key %s and the account address %s.',
from_key, account_address)

state_str = ",".join([str(account_obj.name), str(account_obj.ac_number), str(account_obj.balance)])
state_data = state_str.encode('utf-8')
addresses = self._context.set_state({account_address: state_data})

if len(addresses) < 1:
raise InternalError("State Error")

最佳答案

这可能已经得到回答,但我添加评论的功劳较少。

您看到的错误“试图设置未经授权的地址:”是因为客户端没有在 TransactionHeader 的“输出”中包含这些地址"地址字段。

客户端可以在“outputs”地址字段中给出前缀而不是完整地址,但请谨慎使用此功能,因为它会影响并行事务调度。

请引用https://sawtooth.hyperledger.org/docs/core/nightly/master/architecture/transactions_and_batches.html#dependencies-and-input-output-addresses以便在编写 TransactionHeader 时详细了解不同的字段。

关于python - 锯齿波交易错误 : "Tried to set unauthorized address",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54663482/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com