Skip to content

Commit f7f8baf

Browse files
committed
update poller
1 parent 8ec2a66 commit f7f8baf

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,4 @@ proguard/
6363
/captures
6464
.externalNativeBuild
6565
/.idea/
66+
/apikey.properties

app/build.gradle

+15-6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ android {
1818
versionCode 50401
1919
versionName "5.4.1"
2020
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
21+
22+
def apikeyProps = new Properties()
23+
file("apikey.properties").withInputStream { apikeyProps.load(it) }
24+
25+
// Access the API key and set the buildConfigField
26+
def restApiKey = apikeyProps.getProperty("restApiKey")
27+
if (restApiKey != null) {
28+
buildConfigField("String", "API_KEY", "\"${restApiKey}\"")
29+
}
2130
}
2231

2332
buildFeatures {
@@ -73,26 +82,26 @@ dependencies {
7382
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
7483
// do NOT upgrade because zxing v3.4.0 requires min SDK 24 instead of SDK 21 currently used
7584
implementation 'com.google.zxing:core:3.3.0'
76-
implementation 'com.journeyapps:zxing-android-embedded:4.0.2@aar'
85+
implementation 'com.journeyapps:zxing-android-embedded:4.2.0@aar'
7786
implementation 'com.squareup.retrofit2:retrofit:2.6.2'
7887
implementation 'com.squareup.retrofit2:converter-gson:2.6.2'
7988
implementation 'com.google.guava:guava:28.1-android'
8089
implementation 'com.madgag.spongycastle:core:1.58.0.0'
8190
implementation 'com.neovisionaries:nv-websocket-client:2.9'
8291
implementation 'com.google.code.gson:gson:2.8.6'
8392
implementation 'commons-io:commons-io:20030203.000550'
84-
implementation 'commons-codec:commons-codec:20041127.091804'
93+
implementation 'commons-codec:commons-codec:1.3'
8594
implementation 'org.apache.commons:commons-lang3:3.9'
8695
implementation 'org.slf4j:slf4j-android:1.7.29'
8796
implementation 'com.github.pokkst:bitcoincashj:0.17.5.2'
8897
implementation "com.amplitude:android-sdk:2.24.2"
8998

9099
testImplementation 'junit:junit:4.12'
91100
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
92-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
93-
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.2.0'
94-
androidTestImplementation 'androidx.test:runner:1.2.0'
95-
androidTestImplementation 'androidx.test:rules:1.2.0'
101+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
102+
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.6.1'
103+
androidTestImplementation 'androidx.test:runner:1.6.2'
104+
androidTestImplementation 'androidx.test:rules:1.6.1'
96105
// Optional -- Hamcrest library
97106
androidTestImplementation 'org.hamcrest:hamcrest-library:1.3'
98107
// Optional -- UI testing with UI Automator

app/src/main/java/com/bitcoin/merchant/app/network/websocket/impl/poller/PollerSocket.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import android.util.Log;
44

5+
import com.bitcoin.merchant.app.BuildConfig;
56
import com.bitcoin.merchant.app.network.ExpectedAmounts;
67
import com.bitcoin.merchant.app.network.ExpectedPayments;
78
import com.bitcoin.merchant.app.network.PaymentReceived;
@@ -36,7 +37,7 @@ public class PollerSocket implements TxWebSocketHandler {
3637
private WebSocketListener webSocketListener;
3738
private final OkHttpClient okHttpClient;
3839

39-
private String BASE_URL = "https://rest.bch.actorforth.org/v2/address/utxo/";
40+
private String BASE_URL = "https://bchrest.api.wombat.systems/v2/address/utxo/";
4041

4142
private ScheduledExecutorService executorService;
4243

@@ -66,7 +67,7 @@ public void start() {
6667
}
6768
Log.i("Poller Task", "Starting poller task");
6869
executorService = Executors.newSingleThreadScheduledExecutor();
69-
executorService.scheduleAtFixedRate(createPollerTask(), 0, 5, TimeUnit.SECONDS);
70+
executorService.scheduleAtFixedRate(createPollerTask(), 0, 2, TimeUnit.SECONDS);
7071
}
7172

7273
@Override
@@ -102,6 +103,7 @@ private Runnable createPollerTask() {
102103
Request request = new Request.Builder()
103104
.get()
104105
.url(query)
106+
.header("Authorization", BuildConfig.API_KEY)
105107
.build();
106108
Response execute = okHttpClient.newCall(request).execute();
107109
JSONObject jsonObject = new JSONObject(execute.body().string());

0 commit comments

Comments
 (0)