mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-18 13:09:08 +02:00
* Remove whitelisted attribute, use following to build whitelist * Fix update whitelist on set profile following method * Remove whitelist feature toggle from fronted * Update frontend build
6 lines
161 B
Python
6 lines
161 B
Python
from collections import namedtuple
|
|
|
|
SqueakProfile = namedtuple(
|
|
"SqueakProfile",
|
|
"profile_id, profile_name, private_key, address, sharing, following",
|
|
)
|