diff options
author | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-02-24 18:27:22 +0800 |
---|---|---|
committer | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-02-24 18:27:22 +0800 |
commit | 85f765a533b3be4fd4d44cd58b666adf6e011e17 (patch) | |
tree | 037b11c586b9b7726f41e321296c85da2d5a81b2 /rpc/util.go | |
parent | 114c3b4efe7f30ab7be0bec013210e7b4c3d08d7 (diff) | |
parent | 7c510109cdcd6251724df6c7705b27043c3168f8 (diff) | |
download | dexon-85f765a533b3be4fd4d44cd58b666adf6e011e17.tar dexon-85f765a533b3be4fd4d44cd58b666adf6e011e17.tar.gz dexon-85f765a533b3be4fd4d44cd58b666adf6e011e17.tar.bz2 dexon-85f765a533b3be4fd4d44cd58b666adf6e011e17.tar.lz dexon-85f765a533b3be4fd4d44cd58b666adf6e011e17.tar.xz dexon-85f765a533b3be4fd4d44cd58b666adf6e011e17.tar.zst dexon-85f765a533b3be4fd4d44cd58b666adf6e011e17.zip |
Merge remote-tracking branch 'upstream/develop' into evmjit
Diffstat (limited to 'rpc/util.go')
-rw-r--r-- | rpc/util.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rpc/util.go b/rpc/util.go index 1939b3474..00a418783 100644 --- a/rpc/util.go +++ b/rpc/util.go @@ -108,6 +108,7 @@ func toLogs(logs state.Logs) (ls []Log) { type whisperFilter struct { messages []xeth.WhisperMessage timeout time.Time + id int } func (w *whisperFilter) add(msgs ...xeth.WhisperMessage) { @@ -123,6 +124,7 @@ func (w *whisperFilter) get() []xeth.WhisperMessage { type logFilter struct { logs state.Logs timeout time.Time + id int } func (l *logFilter) add(logs ...state.Log) { |