Skip to content

Commit

Permalink
Update ganache config for new runner
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesSmartCell committed Oct 1, 2023
1 parent fb7003f commit 27b1138
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
adb shell settings put global transition_animation_scale 0.0
adb shell settings put global animator_duration_scale 0.0
adb shell settings put secure show_ime_with_hard_keyboard 0
ganache --chain.chainId 2 -h 0.0.0.0 -p 8545 -m "horse light surface bamboo combine item lumber tunnel choose acid mail feature" &
ganache --chain.chainId 2 -h 0.0.0.0 -p 8545 -m "horse light surface bamboo combine item lumber tunnel choose acid mail feature" --server.port 8555 &
adb logcat >> output/emulator.log &
./gradlew :app:uninstallAll :app:connectedNoAnalyticsDebugAndroidTest -x lint -PdisablePreDex
kill %1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
public class Steps
{
//public static final String GANACHE_URL = "http://10.0.2.2:8545/";
public static final String GANACHE_URL = "http://192.168.50.128:8545/";
public static final String GANACHE_URL = "http://192.168.50.224:8555/";

public static void createNewWallet()
{
Expand Down
2 changes: 1 addition & 1 deletion e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ chmod 666 output/emulator.log # allow writing to log file
adb logcat >> output/emulator.log &

source ~/.bashrc
ganache --chain.chainId 2 -h 0.0.0.0 -m "horse light surface bamboo combine item lumber tunnel choose acid mail feature"
ganache --chain.chainId 2 -h 0.0.0.0 -m "horse light surface bamboo combine item lumber tunnel choose acid mail feature" --server.port 8555
adb shell rm /storage/emulated/0/DCIM/*.png
./gradlew :app:uninstallAll :app:connectedNoAnalyticsDebugAndroidTest -x lint -PdisablePreDex
adb shell rm /storage/emulated/0/DCIM/*.png
Expand Down

0 comments on commit 27b1138

Please sign in to comment.