diff options
author | Felix Lange <fjl@twurst.com> | 2015-08-27 00:55:51 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-08-27 00:55:51 +0800 |
commit | 14370a2260bdb095e245e2a7994b1798e61c61ec (patch) | |
tree | b9a8ca810fc7be05bbc1ac01c419b4797640b45f /rpc | |
parent | 3df6f3fc14e3a6947cf7217101a55550fc6212f9 (diff) | |
parent | a1d8015817737c200bc6eb7a33a3486de6bd7384 (diff) | |
download | dexon-14370a2260bdb095e245e2a7994b1798e61c61ec.tar.gz dexon-14370a2260bdb095e245e2a7994b1798e61c61ec.tar.zst dexon-14370a2260bdb095e245e2a7994b1798e61c61ec.zip |
Merge pull request #1718 from caktux/develop
add missing shh_getMessages to RPC mappings
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/api/shh.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rpc/api/shh.go b/rpc/api/shh.go index 9ca6f9dda..60e805605 100644 --- a/rpc/api/shh.go +++ b/rpc/api/shh.go @@ -38,6 +38,7 @@ var ( "shh_newIdentity": (*shhApi).NewIdentity, "shh_newFilter": (*shhApi).NewFilter, "shh_uninstallFilter": (*shhApi).UninstallFilter, + "shh_getMessages": (*shhApi).GetMessages, "shh_getFilterChanges": (*shhApi).GetFilterChanges, } ) |