Skip to content

Commit

Permalink
Change 'oneiro-ndev' references to 'ndau' organization
Browse files Browse the repository at this point in the history
  • Loading branch information
edmcnierney committed Mar 12, 2020
1 parent d67dd91 commit 0df6647
Show file tree
Hide file tree
Showing 23 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion pkg/meta/app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The purpose of this package is to abstract that interface's implementation.
- [ ] subclass the meta-application:

```go
import meta "github.com/oneiro-ndev/metanode/pkg/meta/app"
import meta "github.com/ndau/metanode/pkg/meta/app"
type MyApp struct {
*meta.App
...
Expand Down
8 changes: 4 additions & 4 deletions pkg/meta/app/app_consensus.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ package app
import (
"fmt"

"github.com/oneiro-ndev/metanode/pkg/meta/app/code"
metast "github.com/oneiro-ndev/metanode/pkg/meta/state"
metatx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
math "github.com/oneiro-ndev/ndaumath/pkg/types"
"github.com/ndau/metanode/pkg/meta/app/code"
metast "github.com/ndau/metanode/pkg/meta/state"
metatx "github.com/ndau/metanode/pkg/meta/transaction"
math "github.com/ndau/ndaumath/pkg/types"
log "github.com/sirupsen/logrus"
abci "github.com/tendermint/tendermint/abci/types"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/app/app_infoquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"fmt"
"strings"

"github.com/oneiro-ndev/metanode/pkg/meta/app/code"
"github.com/ndau/metanode/pkg/meta/app/code"
log "github.com/sirupsen/logrus"
abci "github.com/tendermint/tendermint/abci/types"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/app/app_logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ package app
import (
"os"

metatx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
metatx "github.com/ndau/metanode/pkg/meta/transaction"
log "github.com/sirupsen/logrus"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/meta/app/app_mempool.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ package app
import (
"fmt"

"github.com/oneiro-ndev/metanode/pkg/meta/app/code"
metatx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
"github.com/ndau/metanode/pkg/meta/app/code"
metatx "github.com/ndau/metanode/pkg/meta/transaction"
log "github.com/sirupsen/logrus"
abci "github.com/tendermint/tendermint/abci/types"
)
Expand Down
6 changes: 3 additions & 3 deletions pkg/meta/app/application.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ import (
"github.com/attic-labs/noms/go/d"
"github.com/attic-labs/noms/go/datas"
"github.com/attic-labs/noms/go/spec"
metast "github.com/oneiro-ndev/metanode/pkg/meta/state"
metatx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
math "github.com/oneiro-ndev/ndaumath/pkg/types"
metast "github.com/ndau/metanode/pkg/meta/state"
metatx "github.com/ndau/metanode/pkg/meta/transaction"
math "github.com/ndau/ndaumath/pkg/types"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
abci "github.com/tendermint/tendermint/abci/types"
Expand Down
4 changes: 2 additions & 2 deletions pkg/meta/app/application_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"testing"

nt "github.com/attic-labs/noms/go/types"
metast "github.com/oneiro-ndev/metanode/pkg/meta/state"
metatx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
metast "github.com/ndau/metanode/pkg/meta/state"
metatx "github.com/ndau/metanode/pkg/meta/transaction"
"github.com/pkg/errors"
"github.com/stretchr/testify/require"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/app/test.app/app_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ package testapp
import (
"encoding/binary"

meta "github.com/oneiro-ndev/metanode/pkg/meta/app"
meta "github.com/ndau/metanode/pkg/meta/app"
abci "github.com/tendermint/tendermint/abci/types"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/app/test.app/app_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"encoding/binary"
"testing"

"github.com/oneiro-ndev/metanode/pkg/meta/app/code"
"github.com/ndau/metanode/pkg/meta/app/code"
"github.com/stretchr/testify/require"
abci "github.com/tendermint/tendermint/abci/types"
)
Expand Down
6 changes: 3 additions & 3 deletions pkg/meta/app/test.app/application.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ package testapp
import (
"io/ioutil"

meta "github.com/oneiro-ndev/metanode/pkg/meta/app"
metast "github.com/oneiro-ndev/metanode/pkg/meta/state"
util "github.com/oneiro-ndev/noms-util"
meta "github.com/ndau/metanode/pkg/meta/app"
metast "github.com/ndau/metanode/pkg/meta/state"
util "github.com/ndau/noms-util"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/meta/app/test.app/application_height_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"testing"
"time"

"github.com/oneiro-ndev/metanode/pkg/meta/app/code"
metatx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
"github.com/ndau/metanode/pkg/meta/app/code"
metatx "github.com/ndau/metanode/pkg/meta/transaction"
"github.com/stretchr/testify/require"
abci "github.com/tendermint/tendermint/abci/types"
)
Expand Down
6 changes: 3 additions & 3 deletions pkg/meta/app/test.app/application_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import (
"testing"
"time"

"github.com/oneiro-ndev/metanode/pkg/meta/app/code"
metast "github.com/oneiro-ndev/metanode/pkg/meta/state"
metatx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
"github.com/ndau/metanode/pkg/meta/app/code"
metast "github.com/ndau/metanode/pkg/meta/state"
metatx "github.com/ndau/metanode/pkg/meta/transaction"
"github.com/pkg/errors"
"github.com/stretchr/testify/require"
abci "github.com/tendermint/tendermint/abci/types"
Expand Down
6 changes: 3 additions & 3 deletions pkg/meta/app/test.app/history_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
"testing"
"time"

"github.com/oneiro-ndev/metanode/pkg/meta/state"
metatx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
util "github.com/oneiro-ndev/noms-util"
"github.com/ndau/metanode/pkg/meta/state"
metatx "github.com/ndau/metanode/pkg/meta/transaction"
util "github.com/ndau/noms-util"
"github.com/stretchr/testify/require"
abci "github.com/tendermint/tendermint/abci/types"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/meta/app/test.app/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ package testapp
import (
"github.com/attic-labs/noms/go/marshal"
nt "github.com/attic-labs/noms/go/types"
metast "github.com/oneiro-ndev/metanode/pkg/meta/state"
util "github.com/oneiro-ndev/noms-util"
metast "github.com/ndau/metanode/pkg/meta/state"
util "github.com/ndau/noms-util"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/app/test.app/transactions.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"encoding/binary"
"fmt"

metatx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
metatx "github.com/ndau/metanode/pkg/meta/transaction"
)

//go:generate msgp -tests=0
Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/app/thunk.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

package app

import metast "github.com/oneiro-ndev/metanode/pkg/meta/state"
import metast "github.com/ndau/metanode/pkg/meta/state"

// A Thunk is a unit of computation prepared in one place and executed in
// another. It turns out that we need to be able to register and playback
Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/search/date_range.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"strconv"
"strings"

math "github.com/oneiro-ndev/ndaumath/pkg/types"
math "github.com/ndau/ndaumath/pkg/types"
)

// Date range interval is how many seconds between snapshot we take of the blockchain height.
Expand Down
4 changes: 2 additions & 2 deletions pkg/meta/state/generate.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package state

//go:generate go run $GOPATH/src/github.com/oneiro-ndev/generator/cmd/nomsify $GOPATH/src/github.com/oneiro-ndev/metanode/pkg/meta/state
//go:generate find $GOPATH/src/github.com/oneiro-ndev/metanode/pkg/meta/state -name "*noms_gen*.go" -maxdepth 1 -exec goimports -w {} ;
//go:generate go run $GOPATH/src/github.com/ndau/generator/cmd/nomsify $GOPATH/src/github.com/ndau/metanode/pkg/meta/state
//go:generate find $GOPATH/src/github.com/ndau/metanode/pkg/meta/state -name "*noms_gen*.go" -maxdepth 1 -exec goimports -w {} ;
// ----- ---- --- -- -
// Copyright 2019, 2020 The Axiom Foundation. All Rights Reserved.
//
Expand Down
4 changes: 2 additions & 2 deletions pkg/meta/state/metastate_noms.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import (

"github.com/attic-labs/noms/go/marshal"
nt "github.com/attic-labs/noms/go/types"
util "github.com/oneiro-ndev/noms-util"
util "github.com/ndau/noms-util"
"github.com/pkg/errors"
)

// this code generated by github.com/oneiro-ndev/generator/cmd/nomsify
// this code generated by github.com/ndau/generator/cmd/nomsify
// it was edited and moved to a new file in order that regenerating will cause
// compilation errors, so that humans can appropriately edit the generated code.
// search for "WARNING WARNING" to find the appropriate section.
Expand Down
4 changes: 2 additions & 2 deletions pkg/meta/state/vote_stats_noms_gen.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package state

// this code generated by github.com/oneiro-ndev/generator/cmd/nomsify -- DO NOT EDIT
// this code generated by github.com/ndau/generator/cmd/nomsify -- DO NOT EDIT

// ----- ---- --- -- -
// Copyright 2019, 2020 The Axiom Foundation. All Rights Reserved.
Expand All @@ -18,7 +18,7 @@ import (

"github.com/attic-labs/noms/go/marshal"
nt "github.com/attic-labs/noms/go/types"
util "github.com/oneiro-ndev/noms-util"
util "github.com/ndau/noms-util"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/transaction/test/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"encoding/binary"
"fmt"

tx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
tx "github.com/ndau/metanode/pkg/meta/transaction"
)

//go:generate msgp -tests=0
Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/transaction/test/transactable_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ package tests
import (
"testing"

tx "github.com/oneiro-ndev/metanode/pkg/meta/transaction"
tx "github.com/ndau/metanode/pkg/meta/transaction"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/meta/transaction/transactable.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"reflect"

"github.com/gofrs/uuid"
"github.com/oneiro-ndev/ndaumath/pkg/signature"
"github.com/ndau/ndaumath/pkg/signature"
"github.com/pkg/errors"
"github.com/tinylib/msgp/msgp"
)
Expand Down

0 comments on commit 0df6647

Please sign in to comment.