We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
session_token
1 parent 0da07d3 commit 397f098Copy full SHA for 397f098
adapter/src/ethereum.rs
@@ -38,8 +38,6 @@ pub struct EthereumAdapter {
38
keystore_json: Value,
39
keystore_pwd: Password,
40
config: Config,
41
- // Auth tokens that we have verified (tokenId => session)
42
- session_tokens: HashMap<String, Session>,
43
// Auth tokens that we've generated to authenticate with someone (address => token)
44
authorization_tokens: HashMap<String, String>,
45
wallet: Option<SafeAccount>,
@@ -72,7 +70,6 @@ impl EthereumAdapter {
72
70
address,
73
71
keystore_json,
74
keystore_pwd: opts.keystore_pwd.into(),
75
- session_tokens: HashMap::new(),
76
authorization_tokens: HashMap::new(),
77
wallet: None,
78
config: config.to_owned(),
0 commit comments