mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-02-18 00:46:33 +00:00
7 lines
321 B
Bash
7 lines
321 B
Bash
|
#!/bin/bash
|
||
|
geth account import test_pk --password config/development/password --datadir .embark/development/datadir/
|
||
|
sleep 5s
|
||
|
echo 'Waiting 5s before unlocking the account'
|
||
|
geth --exec "personal.unlockAccount('0xb8d851486d1c953e31a44374aca11151d49b8bb3', 'dev_password', 0)" attach .embark/development/datadir/geth.ipc
|
||
|
|