Skip to content

Commit

Permalink
update check problem (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
JimmyShi22 authored Jun 16, 2020
1 parent e042b62 commit 19014fa
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/com/webank/wecross/routine/htlc/HTLCResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,18 @@ public void onResponse(Response response) {
});
}

@Override
public void asyncCall(
TransactionContext<TransactionRequest> request, Resource.Callback callback) {
getSelfResource().asyncCall(request, callback);
}

@Override
public void asyncSendTransaction(
TransactionContext<TransactionRequest> request, Resource.Callback callback) {
getSelfResource().asyncSendTransaction(request, callback);
}

public boolean isFresh() {
return isFresh;
}
Expand Down

0 comments on commit 19014fa

Please sign in to comment.