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

187185079: Now using Frequency 1.11.0 #51

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = 'com.strategyobject.substrateclient'
version = '0.2.5.1-SNAPSHOT'
version = '0.2.5.2-SNAPSHOT'

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.strategyobject.substrateclient.tests.containers;

public class FrequencyVersion {
public static final String CURRENT_VERSION = "v1.10.0";
public static final Long SPEC = 67L;
public static final String CURRENT_VERSION = "v1.11.0";
public static final Long SPEC = 74L;

private FrequencyVersion() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@
@Getter
public class RpcException extends RuntimeException {
private final int code;
private final String message;
private final String data;

public RpcException(int code, String message, String data) {
super("RPC error " + code + ": " + message + (data == null ? "" : " (" + data + ")"));
this.code = code;
this.message = message;
this.data = data;
}
}
Loading