From 0cfc8e230c79fe75ca5da05e6059181616baadab Mon Sep 17 00:00:00 2001 From: Andrey Beletsky Date: Tue, 3 Sep 2019 00:47:52 +0700 Subject: [PATCH] Add account ID to StreamCreateOptions --- extras/jsonrpc/daemon.go | 1 + 1 file changed, 1 insertion(+) diff --git a/extras/jsonrpc/daemon.go b/extras/jsonrpc/daemon.go index cc70b9b..4717ab9 100644 --- a/extras/jsonrpc/daemon.go +++ b/extras/jsonrpc/daemon.go @@ -323,6 +323,7 @@ type StreamCreateOptions struct { ChannelName *string `json:"channel_name,omitempty"` ChannelID *string `json:"channel_id,omitempty"` ChannelAccountID *string `json:"channel_account_id,omitempty"` + AccountID *string `json:"account_id,omitempty"` } func (d *Client) StreamCreate(name, filePath string, bid float64, options StreamCreateOptions) (*TransactionSummary, error) {