UNPKG

@dashevo/wallet-lib

Version:
10 lines (7 loc) 251 B
const WalletLibError = require('./WalletLibError'); class TransactionMetadataNotInStore extends WalletLibError { constructor(txid) { super(`Transaction metadata is not in store: ${txid}`); } } module.exports = TransactionMetadataNotInStore;