mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-05 23:23:08 +00:00
9 lines
177 B
Nim
9 lines
177 B
Nim
|
|
import ../../signer
|
||
|
|
|
||
|
|
type
|
||
|
|
WalletError* = object of SignerError
|
||
|
|
|
||
|
|
func raiseWalletError*(message: string) {.raises: [WalletError].}=
|
||
|
|
raise newException(WalletError, message)
|
||
|
|
|