Updates dummy users
This commit is contained in:
parent
b31f315a76
commit
73937e0545
|
@ -169,8 +169,8 @@ class Dummy:
|
||||||
def user_client(self, email: str, password: str, name: str, ethereum_address: str):
|
def user_client(self, email: str, password: str, name: str, ethereum_address: str):
|
||||||
user1 = User(email=email, password=password, ethereum_address=ethereum_address)
|
user1 = User(email=email, password=password, ethereum_address=ethereum_address)
|
||||||
|
|
||||||
user2 = User(email='user2@test.com', password='1234', ethereum_address='0x56EbFdbAA98f52027A9776456e4fcD5d91090818')
|
user2 = User(email='user2@dhub.com', password='1234', ethereum_address='0x56EbFdbAA98f52027A9776456e4fcD5d91090818')
|
||||||
user3 = User(email='user3@test.com', password='1234', ethereum_address='0xF88618956696aB7e56Cb7bc87d9848E921C4FDaA')
|
user3 = User(email='user3@dhub.com', password='1234', ethereum_address='0xF88618956696aB7e56Cb7bc87d9848E921C4FDaA')
|
||||||
|
|
||||||
user1.individuals.add(Person(name=name))
|
user1.individuals.add(Person(name=name))
|
||||||
db.session.add(user1)
|
db.session.add(user1)
|
||||||
|
|
Reference in New Issue