Sawtooth Transaction error: “Tried to set unauthorized address”
问题 I am trying to write my custom Transaction processor. I am writing for simple Account class class Account: def __init__(self, name, ac_number, balance): self.name = name self.ac_number = ac_number self.balance = balance My TP is working fine for a single account. Now I want to improve it for multiple accounts. To get a different state for each account number I have changed _'_get_account_address_' function. I am following @danintel 's Cookiejar and XO_python projects. I am following xo code