Skip to content

Commit

Permalink
Update module path
Browse files Browse the repository at this point in the history
  • Loading branch information
learnforpractice committed Jul 20, 2022
1 parent abdaa91 commit 95f4ec7
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 16 deletions.
4 changes: 2 additions & 2 deletions eosio/eosio_debug.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion eosio/print_debug.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package eosio
import (
"unsafe"

"github.com/learnforpractice/chaintester"
"github.com/uuosio/chaintester"
)

//Prints string
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
2 changes: 0 additions & 2 deletions tests/test/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tests/test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion tests/testdebugging/basic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"testing"

"github.com/learnforpractice/chaintester"
"github.com/uuosio/chaintester"
)

var ctx = context.Background()
Expand Down
6 changes: 1 addition & 5 deletions tests/testdebugging/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
1 change: 0 additions & 1 deletion tests/token/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 95f4ec7

Please sign in to comment.