aboutsummaryrefslogtreecommitdiffstats
path: root/eth/protocol.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-06-09 23:03:07 +0800
committerFelix Lange <fjl@twurst.com>2015-06-09 23:07:10 +0800
commit73c355591fe0279334675c555b6d614aa25b6781 (patch)
tree73e61b8040ae81de2a5108d54dd93bf8dba581ae /eth/protocol.go
parent8dc3048f6556e3fb2f719f383834332656b4c8fe (diff)
downloaddexon-73c355591fe0279334675c555b6d614aa25b6781.tar
dexon-73c355591fe0279334675c555b6d614aa25b6781.tar.gz
dexon-73c355591fe0279334675c555b6d614aa25b6781.tar.bz2
dexon-73c355591fe0279334675c555b6d614aa25b6781.tar.lz
dexon-73c355591fe0279334675c555b6d614aa25b6781.tar.xz
dexon-73c355591fe0279334675c555b6d614aa25b6781.tar.zst
dexon-73c355591fe0279334675c555b6d614aa25b6781.zip
core, eth: document that result of GetTransactions is modifiable
Diffstat (limited to 'eth/protocol.go')
-rw-r--r--eth/protocol.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/eth/protocol.go b/eth/protocol.go
index 9ccf2cb60..57805d9bd 100644
--- a/eth/protocol.go
+++ b/eth/protocol.go
@@ -57,10 +57,12 @@ var errorToString = map[int]string{
ErrSuspendedPeer: "Suspended peer",
}
-// backend is the interface the ethereum protocol backend should implement
-// used as an argument to EthProtocol
type txPool interface {
+ // AddTransactions should add the given transactions to the pool.
AddTransactions([]*types.Transaction)
+
+ // GetTransactions should return pending transactions.
+ // The slice should be modifiable by the caller.
GetTransactions() types.Transactions
}