Upgrade status-protocol-go (#1664)
This commit is contained in:
parent
9d6601207f
commit
89659f85b4
2
go.mod
2
go.mod
|
@ -31,7 +31,7 @@ require (
|
|||
github.com/russolsen/transit v0.0.0-20180705123435-0794b4c4505a
|
||||
github.com/status-im/migrate/v4 v4.6.2-status.2
|
||||
github.com/status-im/rendezvous v1.3.0
|
||||
github.com/status-im/status-protocol-go v0.4.5-0.20191106131458-03adc878d803
|
||||
github.com/status-im/status-protocol-go v0.4.5-0.20191107122821-775d17008edf
|
||||
github.com/status-im/whisper v1.5.2
|
||||
github.com/stretchr/testify v1.4.0
|
||||
github.com/syndtr/goleveldb v1.0.0
|
||||
|
|
4
go.sum
4
go.sum
|
@ -576,8 +576,8 @@ github.com/status-im/migrate/v4 v4.6.2-status.2 h1:SdC+sMDl/aI7vUlwD2qj2p7KsK4T6
|
|||
github.com/status-im/migrate/v4 v4.6.2-status.2/go.mod h1:c/kc90n47GZu/58nnz1OMLTf7uE4Da4gZP5qmU+A/v8=
|
||||
github.com/status-im/rendezvous v1.3.0 h1:7RK/MXXW+tlm0asKm1u7Qp7Yni6AO29a7j8+E4Lbjg4=
|
||||
github.com/status-im/rendezvous v1.3.0/go.mod h1:+hzjuP+j/XzLPeF6E50b88pWOTLdTcwjvNYt+Gh1W1s=
|
||||
github.com/status-im/status-protocol-go v0.4.5-0.20191106131458-03adc878d803 h1:EfrFkBu1iNGZMMiFNx7UI3pyKdh7Oklkrx8HEivnChw=
|
||||
github.com/status-im/status-protocol-go v0.4.5-0.20191106131458-03adc878d803/go.mod h1:r8TgqNOpY+fGKkBfR9PldxSSaBN0EsEEY4a3WsIh9LY=
|
||||
github.com/status-im/status-protocol-go v0.4.5-0.20191107122821-775d17008edf h1:1boOd5yMePhXxYei97Rm/hFF45alUpMl87ZAWvlSKtg=
|
||||
github.com/status-im/status-protocol-go v0.4.5-0.20191107122821-775d17008edf/go.mod h1:r8TgqNOpY+fGKkBfR9PldxSSaBN0EsEEY4a3WsIh9LY=
|
||||
github.com/status-im/whisper v1.5.2 h1:26NgiKusmPic38eQdtXnaY+iaQ/LuQ3Dh0kCGYT/Uxs=
|
||||
github.com/status-im/whisper v1.5.2/go.mod h1:emrOxzJme0k66QtbbQ2bdd3P8RCdLZ8sTD7SkwH1s2s=
|
||||
github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570 h1:gIlAHnH1vJb5vwEjIp5kBj/eu99p/bl0Ay2goiPe5xE=
|
||||
|
|
|
@ -78,6 +78,8 @@ func statusMessageHandler(d transit.Decoder, value interface{}) (interface{}, er
|
|||
sm.Content.Text, ok = contentVal.(string)
|
||||
case transit.Keyword("response-to"):
|
||||
sm.Content.ResponseTo, ok = contentVal.(string)
|
||||
case transit.Keyword("name"):
|
||||
sm.Content.Name, ok = contentVal.(string)
|
||||
case transit.Keyword("chat-id"):
|
||||
sm.Content.ChatID, ok = contentVal.(string)
|
||||
}
|
||||
|
|
|
@ -37,6 +37,7 @@ type Content struct {
|
|||
ChatID string `json:"chat_id"`
|
||||
Text string `json:"text"`
|
||||
ResponseTo string `json:"response-to"`
|
||||
Name string `json:"name"` // the ENS name of the sender
|
||||
}
|
||||
|
||||
// TimestampInMs is a timestamp in milliseconds.
|
||||
|
|
|
@ -365,7 +365,7 @@ github.com/status-im/migrate/v4/source/go_bindata
|
|||
github.com/status-im/rendezvous
|
||||
github.com/status-im/rendezvous/protocol
|
||||
github.com/status-im/rendezvous/server
|
||||
# github.com/status-im/status-protocol-go v0.4.5-0.20191106131458-03adc878d803
|
||||
# github.com/status-im/status-protocol-go v0.4.5-0.20191107122821-775d17008edf
|
||||
github.com/status-im/status-protocol-go
|
||||
github.com/status-im/status-protocol-go/applicationmetadata
|
||||
github.com/status-im/status-protocol-go/bridge/geth
|
||||
|
|
Loading…
Reference in New Issue