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.
1 parent d5be1b8 commit e5e0211Copy full SHA for e5e0211
adapter/Makefile.toml
@@ -12,6 +12,10 @@ dependencies = [
12
"ganache-down",
13
]
14
15
+[tasks.test]
16
+# run tests in release because of slow unlock time of Ethereum adapter (i.e. keystore decryption)
17
+args = ["test", "--release", "--all-features"]
18
+
19
[tasks.ganache-up]
20
script = '''
21
docker-compose -f ../docker-compose.harness.yml up --renew-anon-volumes -d ganache \
adapter/src/ethereum.rs
@@ -27,6 +27,7 @@ use self::ewt::Payload;
27
28
mod error;
29
/// Ethereum Web Token
30
+/// See https://github.com/ethereum/EIPs/issues/1341
31
///
32
/// This module implements the Ethereum Web Token with 2 difference:
33
/// - The signature includes the Ethereum signature mode, see [`ETH_SIGN_SUFFIX`]
0 commit comments