aboutsummaryrefslogtreecommitdiffstats
path: root/core/types
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2017-05-13 03:35:45 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2017-05-18 15:05:58 +0800
commita5f6a1cb7c5e5dde130391e9bed7625ef9ff36b5 (patch)
tree251d24c632d746ad32af6874fe115b1e86ae9b03 /core/types
parente6aff513dbe04b105db1ae44501c1732a7ab7af3 (diff)
downloadgo-tangerine-a5f6a1cb7c5e5dde130391e9bed7625ef9ff36b5.tar
go-tangerine-a5f6a1cb7c5e5dde130391e9bed7625ef9ff36b5.tar.gz
go-tangerine-a5f6a1cb7c5e5dde130391e9bed7625ef9ff36b5.tar.bz2
go-tangerine-a5f6a1cb7c5e5dde130391e9bed7625ef9ff36b5.tar.lz
go-tangerine-a5f6a1cb7c5e5dde130391e9bed7625ef9ff36b5.tar.xz
go-tangerine-a5f6a1cb7c5e5dde130391e9bed7625ef9ff36b5.tar.zst
go-tangerine-a5f6a1cb7c5e5dde130391e9bed7625ef9ff36b5.zip
consensus, core, core/vm, parems: review fixes
Diffstat (limited to 'core/types')
-rw-r--r--core/types/transaction_signing.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/core/types/transaction_signing.go b/core/types/transaction_signing.go
index 25c08a580..b0f3275b2 100644
--- a/core/types/transaction_signing.go
+++ b/core/types/transaction_signing.go
@@ -108,17 +108,6 @@ type Signer interface {
Equal(Signer) bool
}
-/*
-// WithSignature returns a new transaction with the given signature. This signature
-// needs to be in the [R || S || V] format where V is 0 or 1.
-func (s EIP86Signer) WithSignature(tx *Transaction, sig []byte) (*Transaction, error) {
-}
-
-// Hash returns the hash to be signed by the sender.
-// It does not uniquely identify the transaction.
-func (s EIP86Signer) Hash(tx *Transaction) common.Hash {}
-*/
-
// EIP155Transaction implements TransactionInterface using the
// EIP155 rules
type EIP155Signer struct {