File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
app/src/main/java/jfyg/etherscan/helloetherescan
etherscanapi/src/main/java/jfyg/data/transaction Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import io.reactivex.rxkotlin.subscribeBy
88import jfyg.data.account.Account
99import jfyg.data.contract.ContractABI
1010import jfyg.data.stat.Stat
11- import jfyg.data.transaction.TxContractStatus
11+ import jfyg.data.transaction.TxStatus
1212import kotlinx.android.synthetic.main.activity_main.*
1313
1414
@@ -24,7 +24,7 @@ class MainActivity : AppCompatActivity() {
2424 val stat = Stat ()
2525 val account = Account ()
2626 val contract = ContractABI ()
27- val tx = TxContractStatus ()
27+ val tx = TxStatus ()
2828
2929
3030 fab.setOnClickListener {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import jfyg.network.queries.ApiQuery
88/* *
99 * https://etherscan.io/apis#transactions
1010 */
11- class TxContractStatus : TxContract {
11+ class TxStatus : TxStatusContract {
1212
1313 private val query = ApiQuery ()
1414 private val genericNetworkQuery = query.txReceiptStatus(" transaction" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import jfyg.data.TxReceiptStatus
77/* *
88 * https://etherscan.io/apis#transactions
99 */
10- interface TxContract {
10+ interface TxStatusContract {
1111
1212 /* *
1313 * [BETA] Check Contract Execution Status (if there was an error during contract execution)
You can’t perform that action at this time.
0 commit comments