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

Commit

Permalink
Merge pull request #51 from LibertyDSNP/chore/187185079_upgrade_to_fr…
Browse files Browse the repository at this point in the history
…equency_v1.11.0-rc1

187185079: Now using Frequency 1.11.0
  • Loading branch information
pfrank13 authored Mar 14, 2024
2 parents 66c43c5 + 10ab510 commit c41b0e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
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;
}
}

0 comments on commit c41b0e4

Please sign in to comment.