aboutsummaryrefslogtreecommitdiffstats
path: root/signer/core/validation.go
diff options
context:
space:
mode:
Diffstat (limited to 'signer/core/validation.go')
-rw-r--r--signer/core/validation.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/signer/core/validation.go b/signer/core/validation.go
index 7c3ec4274..f3ccfb1c7 100644
--- a/signer/core/validation.go
+++ b/signer/core/validation.go
@@ -23,7 +23,7 @@ import (
"math/big"
"regexp"
- "github.com/ethereum/go-ethereum/common"
+ "github.com/dexon-foundation/dexon/common"
)
// The validation package contains validation checks for transactions
@@ -118,7 +118,7 @@ func (v *Validator) validate(msgs *ValidationMessages, txargs *SendTxArgs, metho
if txargs.To == nil {
//Contract creation should contain sufficient data to deploy a contract
// A typical error is omitting sender due to some quirk in the javascript call
- // e.g. https://github.com/ethereum/go-ethereum/issues/16106
+ // e.g. https://github.com/dexon-foundation/dexon/issues/16106
if len(data) == 0 {
if txargs.Value.ToInt().Cmp(big.NewInt(0)) > 0 {
// Sending ether into black hole