Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit c41b0e4

Browse files
authored
Merge pull request #51 from LibertyDSNP/chore/187185079_upgrade_to_frequency_v1.11.0-rc1
187185079: Now using Frequency 1.11.0
2 parents 66c43c5 + 10ab510 commit c41b0e4

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
allprojects {
99
group = 'com.strategyobject.substrateclient'
10-
version = '0.2.5.1-SNAPSHOT'
10+
version = '0.2.5.2-SNAPSHOT'
1111

1212
repositories {
1313
mavenLocal()

tests/src/main/java/com/strategyobject/substrateclient/tests/containers/FrequencyVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.strategyobject.substrateclient.tests.containers;
22

33
public class FrequencyVersion {
4-
public static final String CURRENT_VERSION = "v1.10.0";
5-
public static final Long SPEC = 67L;
4+
public static final String CURRENT_VERSION = "v1.11.0";
5+
public static final Long SPEC = 74L;
66

77
private FrequencyVersion() {
88
}

transport/src/main/java/com/strategyobject/substrateclient/transport/ws/RpcException.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55
@Getter
66
public class RpcException extends RuntimeException {
77
private final int code;
8-
private final String message;
98
private final String data;
109

1110
public RpcException(int code, String message, String data) {
1211
super("RPC error " + code + ": " + message + (data == null ? "" : " (" + data + ")"));
1312
this.code = code;
14-
this.message = message;
1513
this.data = data;
1614
}
1715
}

0 commit comments

Comments
 (0)