You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
551 B
13 lines
551 B
7 years ago
|
package com.xsn.explorer.helpers
|
||
|
|
||
|
import com.alexitc.playsonify.core.FutureApplicationResult
|
||
|
import com.xsn.explorer.models.{Address, AddressBalance, Transaction, TransactionId}
|
||
|
import com.xsn.explorer.services.XSNService
|
||
|
|
||
|
class DummyXSNService extends XSNService {
|
||
|
|
||
|
override def getTransaction(txid: TransactionId): FutureApplicationResult[Transaction] = ???
|
||
|
override def getAddressBalance(address: Address): FutureApplicationResult[AddressBalance] = ???
|
||
|
override def getTransactionCount(address: Address): FutureApplicationResult[Int] = ???
|
||
|
}
|