lib: bump v0.2.0

* remove training voucher
This commit is contained in:
Mohamed Sohail 2023-05-29 22:49:14 +08:00
parent fa9df4ed3e
commit 5ecb5c40cc
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
2 changed files with 1 additions and 3 deletions

View File

@ -28,7 +28,6 @@ class CustodialRegistrationProxySettings:
def __init__(self): def __init__(self):
self.eth_faucet_address = None self.eth_faucet_address = None
self.custodial_account_index_address = None self.custodial_account_index_address = None
self.training_voucher_address = None
self.system_account_address = None self.system_account_address = None
class CustodialRegistrationProxy(TxFactory): class CustodialRegistrationProxy(TxFactory):
@ -61,7 +60,6 @@ class CustodialRegistrationProxy(TxFactory):
enc = ABIContractEncoder() enc = ABIContractEncoder()
enc.address(settings.eth_faucet_address) enc.address(settings.eth_faucet_address)
enc.address(settings.custodial_account_index_address) enc.address(settings.custodial_account_index_address)
enc.address(settings.training_voucher_address)
enc.address(settings.system_account_address) enc.address(settings.system_account_address)
code += enc.get() code += enc.get()
tx = self.template(sender_address, None, use_nonce=True) tx = self.template(sender_address, None, use_nonce=True)

View File

@ -1,6 +1,6 @@
[metadata] [metadata]
name = custodial-registration-proxy name = custodial-registration-proxy
version = 0.1.0 version = 0.2.0
description = Atomically registers a custodial user on-chain and provisions necessary gas and training vouchers. description = Atomically registers a custodial user on-chain and provisions necessary gas and training vouchers.
long_description = Atomically registers a custodial user on-chain and provisions necessary gas and training vouchers. long_description = Atomically registers a custodial user on-chain and provisions necessary gas and training vouchers.
author = Mohamed Sohail author = Mohamed Sohail