aboutsummaryrefslogtreecommitdiffstats
path: root/dex/api.go
diff options
context:
space:
mode:
Diffstat (limited to 'dex/api.go')
-rw-r--r--dex/api.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/dex/api.go b/dex/api.go
index 70976f071..991926740 100644
--- a/dex/api.go
+++ b/dex/api.go
@@ -139,6 +139,10 @@ func (api *PrivateAdminAPI) IsProposing() bool {
return api.dex.IsProposing()
}
+func (api *PrivateAdminAPI) NotaryInfo() (*NotaryInfo, error) {
+ return api.dex.protocolManager.NotaryInfo()
+}
+
// PublicDebugAPI is the collection of Ethereum full node APIs exposed
// over the public debugging endpoint.
type PublicDebugAPI struct {