aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/whisperv6/peer.go
Commit message (Collapse)AuthorAgeFilesLines
* Change import go github.com/dexon-foundation/dexonWei-Ning Huang2019-03-121-4/+4
|
* whisper: add light mode check to handshake (#16725)b00ris2018-09-051-1/+9
|
* all: switch out defunct set library to different one (#16873)Ralph Caraveo III2018-07-161-4/+4
| | | | | | * keystore, ethash, eth, miner, rpc, whisperv6: tech debt with now defunct set. * whisperv5: swap out gopkg.in/fatih/set.v0 with supported set
* whisper: topics replaced by bloom filtersVlad2018-03-011-7/+7
|
* whisper: Fix race condition in whisperv6/peer.goPedro Pombeiro2018-02-211-0/+6
|
* whisper: bloom filter refactoring (#16046)gluk2562018-02-091-10/+20
| | | | | | * whisper: bloom filter refactoring * whisper: fixed full node
* whisper: remove linter warnings (#15972)Guillaume Ballet2018-01-261-41/+42
| | | | | | | | | | | | | | | | | | | | | | | * whisper: fixes warnings from the code linter * whisper: more non-API-breaking changes The remaining lint errors are because of auto-generated files and one is because an exported function has a non- exported return type. Changing this would break the API, and will be part of another commit for easier reversal. * whisper: un-export NewSentMessage to please the linter This is an API change, which is why it's in its own commit. This change was initiated after the linter complained that the returned type wasn't exported. I chose to un-export the function instead of exporting the type, because that type is an implementation detail that I would like to change in the near future to make the code more readable and with an increased coverage. * whisper: update gencodec output after upgrading it to new lint standards
* whisper/whisperv6: implement pow/bloom exchange protocol (#15802)gluk2562018-01-121-4/+50
| | | This is the main feature of v6.
* whisper/whisperv6: PoW requirement (#15701)gluk2562017-12-211-11/+20
| | | | New Whisper-level message introduced (PoW requirement), corresponding logic added, plus some tests.
* whisper/whisperv6: message bundling (#15666)gluk2562017-12-211-10/+15
| | | | | Changed the communication protocol for ordinary message, according to EIP 627. Messages will be send in bundles, i.e. array of messages will be sent instead of single message.
* whisper/whisperv6: initial commit (clone of v5) (#15324)gluk2562017-11-041-0/+174