Skip to content

Commit e5e0211

Browse files
committed
adapter - Makefile - run tests in release
1 parent d5be1b8 commit e5e0211

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

adapter/Makefile.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ dependencies = [
1212
"ganache-down",
1313
]
1414

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+
1519
[tasks.ganache-up]
1620
script = '''
1721
docker-compose -f ../docker-compose.harness.yml up --renew-anon-volumes -d ganache \

adapter/src/ethereum.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ use self::ewt::Payload;
2727

2828
mod error;
2929
/// Ethereum Web Token
30+
/// See https://github.com/ethereum/EIPs/issues/1341
3031
///
3132
/// This module implements the Ethereum Web Token with 2 difference:
3233
/// - The signature includes the Ethereum signature mode, see [`ETH_SIGN_SUFFIX`]

0 commit comments

Comments
 (0)