GetBlock constructor now receives an argument of type long

develop
Nelson R. Perez 2018-06-11 15:12:48 -05:00
parent 56c808c353
commit 8ed74dbaed
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ public class GetBlock implements ApiCallable {
private long blockNumber;
public GetBlock(int blockNum){
public GetBlock(long blockNum){
this.blockNumber = blockNum;
}