aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/whisperv6/whisper.go
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand as tangerine-network/go-tangerineWei-Ning Huang2019-09-171-6/+6
|
* Change import go github.com/dexon-foundation/dexonWei-Ning Huang2019-06-121-6/+6
|
* whisper: add light mode check to handshake (#16725)b00ris2018-09-051-9/+35
|
* whisper: fix loop in expire() (#17532)Adam Babik2018-08-291-1/+1
|
* all: remove the duplicate 'the' in annotations (#17509)Wenbiao Zheng2018-08-271-1/+1
|
* all: switch out defunct set library to different one (#16873)Ralph Caraveo III2018-07-161-5/+5
| | | | | | * keystore, ethash, eth, miner, rpc, whisperv6: tech debt with now defunct set. * whisperv5: swap out gopkg.in/fatih/set.v0 with supported set
* whisper: Reduce message loop log from Warn to Info (#17055)Adrià Cidre2018-06-261-1/+1
|
* whisper: topics replaced by bloom filtersVlad2018-03-011-11/+11
|
* whsiper: refactoringVlad2018-02-281-18/+0
|
* whisper: refactoringVlad2018-02-231-4/+1
|
* whisper: light client mode introducedVlad2018-02-231-4/+7
|
* whisper: bloom filter refactoring (#16046)gluk2562018-02-091-6/+1
| | | | | | * whisper: bloom filter refactoring * whisper: fixed full node
* whisper: change the whisper message format so as to add the payload size ↵gluk2562018-01-301-10/+14
| | | | | | | | | | | | | | | | | | (#15870) * whisper: message format changed * whisper: tests fixed * whisper: style fixes * whisper: fixed names, fixed failing tests * whisper: fix merge issue in #15870 Occured while using the github online merge tool. Lesson learned. * whisper: fix a gofmt error for #15870
* whisper: remove linter warnings (#15972)Guillaume Ballet2018-01-261-222/+222
| | | | | | | | | | | | | | | | | | | | | | | * 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-36/+206
| | | This is the main feature of v6.
* whisper/whisperv6: PoW requirement (#15701)gluk2562017-12-211-13/+73
| | | | New Whisper-level message introduced (PoW requirement), corresponding logic added, plus some tests.
* whisper/whisperv6: message bundling (#15666)gluk2562017-12-211-10/+18
| | | | | 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: remove Version from the envelope (#15621)Guillaume Ballet2017-12-081-28/+8
|
* whisper/whisperv6: remove aesnonce (#15578)Guillaume Ballet2017-12-081-7/+0
| | | | As per EIP-627, the salt for symmetric encryption is now part of the payload. This commit does that.
* build: enable unconvert linter (#15456)ferhat elmas2017-11-111-1/+1
| | | | | | | | | * build: enable unconvert linter - fixes #15453 - update code base for failing cases * cmd/puppeth: replace syscall.Stdin with os.Stdin.Fd() for unconvert linter
* whisper/whisperv6: initial commit (clone of v5) (#15324)gluk2562017-11-041-0/+858