aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/transaction.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-18 00:05:46 +0800
committerobscuren <geffobscura@gmail.com>2014-06-18 00:05:46 +0800
commit34c8045d5be6488e9800c24e1e696e1b912f344c (patch)
tree322b1500e7e02b5fa5b2fab094605e433fdb6796 /ethchain/transaction.go
parenta90ffe1af1b28935fc77a2c5cf37972bac03f062 (diff)
downloadgo-tangerine-34c8045d5be6488e9800c24e1e696e1b912f344c.tar.gz
go-tangerine-34c8045d5be6488e9800c24e1e696e1b912f344c.tar.zst
go-tangerine-34c8045d5be6488e9800c24e1e696e1b912f344c.zip
Fixed issue where JUMPI would do an equally check with 1 instead of GT
Diffstat (limited to 'ethchain/transaction.go')
-rw-r--r--ethchain/transaction.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/transaction.go b/ethchain/transaction.go
index 3d52e4f73..9044f586e 100644
--- a/ethchain/transaction.go
+++ b/ethchain/transaction.go
@@ -65,7 +65,7 @@ func (tx *Transaction) CreatesContract() bool {
return tx.contractCreation
}
-/* Depricated */
+/* Deprecated */
func (tx *Transaction) IsContract() bool {
return tx.CreatesContract()
}