whisper/shhclient: update call to shh_post to expect string instead of bool (#16757)

Fixes #16756
This commit is contained in:
Andrea Franz 2018-05-29 10:36:31 +02:00 committed by Guillaume Ballet
parent 40a2c52397
commit 998f6564b2
1 changed files with 3 additions and 3 deletions

View File

@ -159,9 +159,9 @@ func (sc *Client) DeleteSymmetricKey(ctx context.Context, id string) error {
}
// Post a message onto the network.
func (sc *Client) Post(ctx context.Context, message whisper.NewMessage) error {
var ignored bool
return sc.c.CallContext(ctx, &ignored, "shh_post", message)
func (sc *Client) Post(ctx context.Context, message whisper.NewMessage) (string, error) {
var hash string
return hash, sc.c.CallContext(ctx, &hash, "shh_post", message)
}
// SubscribeMessages subscribes to messages that match the given criteria. This method