diff options
Diffstat (limited to 'signer/core/validation.go')
-rw-r--r-- | signer/core/validation.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/signer/core/validation.go b/signer/core/validation.go index f3ccfb1c7..cc9c6c3c1 100644 --- a/signer/core/validation.go +++ b/signer/core/validation.go @@ -23,7 +23,7 @@ import ( "math/big" "regexp" - "github.com/dexon-foundation/dexon/common" + "github.com/tangerine-network/go-tangerine/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/dexon-foundation/dexon/issues/16106 + // e.g. https://github.com/tangerine-network/go-tangerine/issues/16106 if len(data) == 0 { if txargs.Value.ToInt().Cmp(big.NewInt(0)) > 0 { // Sending ether into black hole |