diff --git a/eosio/eosio_debug.go b/eosio/eosio_debug.go index 8856098..0db0274 100644 --- a/eosio/eosio_debug.go +++ b/eosio/eosio_debug.go @@ -8,8 +8,8 @@ import ( "encoding/binary" "unsafe" - "github.com/learnforpractice/chaintester" - "github.com/learnforpractice/chaintester/interfaces" + "github.com/uuosio/chaintester" + "github.com/uuosio/chaintester/interfaces" ) var ctx = context.Background() diff --git a/eosio/print_debug.go b/eosio/print_debug.go index ce37b40..a878fd1 100644 --- a/eosio/print_debug.go +++ b/eosio/print_debug.go @@ -6,7 +6,7 @@ package eosio import ( "unsafe" - "github.com/learnforpractice/chaintester" + "github.com/uuosio/chaintester" ) //Prints string diff --git a/go.mod b/go.mod index 1ec2290..4aa14d8 100644 --- a/go.mod +++ b/go.mod @@ -2,6 +2,4 @@ module github.com/uuosio/chain go 1.16 -replace github.com/learnforpractice/chaintester => /Users/newworld/dev/gscdk/chaintester - -require github.com/learnforpractice/chaintester v0.0.0-20220711072919-951ecab8775b +require github.com/uuosio/chaintester v0.0.0-20220720033226-d528e3affc43 diff --git a/go.sum b/go.sum index cebab23..9d228ad 100644 --- a/go.sum +++ b/go.sum @@ -3,6 +3,8 @@ github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2 github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA= github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= +github.com/uuosio/chaintester v0.0.0-20220720033226-d528e3affc43 h1:kG2B20bN0EaXr7M0nnnmO2tr8kkF2vDBIaXbh9L7s2w= +github.com/uuosio/chaintester v0.0.0-20220720033226-d528e3affc43/go.mod h1:+KdD0RiSkEIdoUKShq+JqoG7ts1fdI4O07hljiudiqg= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= diff --git a/tests/test/go.mod b/tests/test/go.mod index e17e501..382ef61 100644 --- a/tests/test/go.mod +++ b/tests/test/go.mod @@ -2,6 +2,4 @@ module test go 1.16 -replace github.com/uuosio/chain => /Users/newworld/dev/github/go-chain - require github.com/uuosio/chain v0.1.8 diff --git a/tests/test/test.py b/tests/test/test.py index 25cc21d..b3fea2f 100644 --- a/tests/test/test.py +++ b/tests/test/test.py @@ -82,7 +82,7 @@ def teardown_method(self, method): self.chain.produce_block() def compile(cls, name, code): - replace = '/Users/newworld/dev/github/go-chain' + replace = '' return wasmcompiler.compile_go_src(name, code, replace=replace) diff --git a/tests/testdebugging/basic_test.go b/tests/testdebugging/basic_test.go index 9f87958..f5f6487 100644 --- a/tests/testdebugging/basic_test.go +++ b/tests/testdebugging/basic_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/learnforpractice/chaintester" + "github.com/uuosio/chaintester" ) var ctx = context.Background() diff --git a/tests/testdebugging/go.mod b/tests/testdebugging/go.mod index c81a2f8..7049c76 100644 --- a/tests/testdebugging/go.mod +++ b/tests/testdebugging/go.mod @@ -2,12 +2,8 @@ module test go 1.17 -replace github.com/uuosio/chain => /Users/newworld/dev/gscdk/chain - -replace github.com/learnforpractice/chaintester => /Users/newworld/dev/gscdk/chaintester - require ( - github.com/learnforpractice/chaintester v0.0.0-20220711072919-951ecab8775b + github.com/uuosio/chaintester v0.0.0-20220711072919-951ecab8775b github.com/uuosio/chain v0.1.14 ) diff --git a/tests/token/go.mod b/tests/token/go.mod index cbb5ffb..d8208ba 100644 --- a/tests/token/go.mod +++ b/tests/token/go.mod @@ -2,5 +2,4 @@ module token go 1.16 -replace github.com/uuosio/chain => /Users/newworld/dev/github/go-chain require github.com/uuosio/chain v0.1.1