-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Otniel Nicola
committed
Mar 29, 2018
1 parent
56aca83
commit 2db8498
Showing
8 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { | ||
|
||
} | ||
} |