Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Commit c97ba1f

Browse files
author
Vehbi Malkoch
committed
#noticket: super methods added
1 parent 861da83 commit c97ba1f

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>io.cryptoapis</groupId>
55
<artifactId>cryptoapis-java-client</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.2.2-SNAPSHOT</version>
7+
<version>1.2.3-SNAPSHOT</version>
88
<url>http://maven.apache.org</url>
99

1010
<licenses>
@@ -190,7 +190,7 @@
190190
<properties>
191191
<java.version>1.8</java.version>
192192
<project.name>cryptoapis-java-client</project.name>
193-
<project.version>1.2.1</project.version>
193+
<project.version>1.2.2</project.version>
194194
</properties>
195195

196196
</project>

src/main/java/io/cryptoapis/connections/Bitcoin.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public Bitcoin(EndpointConfig endpointConfig) {
1818

1919
@Override
2020
protected void initServices(EndpointConfig endpointConfig) {
21+
super.initServices(endpointConfig);
2122
try {
2223
this.btcTransactionService = getConstructor(BtcTransactionService.class).newInstance(endpointConfig);
2324
} catch (Exception e) {

src/main/java/io/cryptoapis/connections/Ethereum.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public Ethereum(EndpointConfig endpointConfig) {
1818

1919
@Override
2020
protected void initServices(EndpointConfig endpointConfig) {
21+
super.initServices(endpointConfig);
2122
try {
2223
this.ethTokenService = getConstructor(EthTokenService.class).newInstance(endpointConfig);
2324
} catch (Exception e) {

0 commit comments

Comments
 (0)