Added whisper interface for xeth, added examples, updated RPC

* Added RPC methods for whisper
* Added whisper example
This commit is contained in:
obscuren
2015-01-30 13:25:12 +01:00
parent c48644490f
commit c03d403437
10 changed files with 296 additions and 17 deletions

View File

@ -251,3 +251,12 @@ func (a *DbArgs) requirements() error {
}
return nil
}
type WhisperMessageArgs struct {
Payload string
To string
From string
Topics []string
Priority uint32
Ttl uint32
}