Skip to content

Commit

Permalink
Update jars from current dev branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Otniel Nicola committed Mar 29, 2018
1 parent 56aca83 commit 2db8498
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 0 deletions.
Binary file modified mod/modAionBase.jar
Binary file not shown.
Binary file modified mod/modAionImpl.jar
Binary file not shown.
Binary file modified mod/modApiServer.jar
Binary file not shown.
Binary file added mod/modEvtMgrImpl.jar
Binary file not shown.
Binary file modified mod/modLogger.jar
Binary file not shown.
Binary file modified mod/modMcf.jar
Binary file not shown.
1 change: 1 addition & 0 deletions module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
requires aion.log;
requires aion.base;
requires aion.mcf;
requires aion.evtmgr.impl;
requires javafx.fxml;
requires javafx.base;
requires javafx.graphics;
Expand Down
19 changes: 19 additions & 0 deletions src/main/java/org/aion/wallet/WalletApi.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,29 @@
package org.aion.wallet;

import org.aion.api.server.ApiAion;
import org.aion.base.type.ITransaction;
import org.aion.base.type.ITxReceipt;
import org.aion.evtmgr.impl.evt.EventTx;
import org.aion.zero.impl.blockchain.AionImpl;
import org.aion.zero.impl.types.AionBlockSummary;

public class WalletApi extends ApiAion {
public WalletApi() {
super(AionImpl.inst());
}

@Override
protected void onBlock(final AionBlockSummary cbs) {

}

@Override
protected void pendingTxReceived(final ITransaction _tx) {

}

@Override
protected void pendingTxUpdate(final ITxReceipt _txRcpt, final EventTx.STATE _state) {

}
}

0 comments on commit 2db8498

Please sign in to comment.