Skip to content

Commit

Permalink
Use github.com/gagliardetto/[email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
gagliardetto committed Sep 4, 2021
1 parent e52ad22 commit 172364e
Show file tree
Hide file tree
Showing 14 changed files with 40 additions and 29 deletions.
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ require (
github.com/dfuse-io/binary v0.0.0-20210216024852-4ae6830a495d
github.com/dfuse-io/logging v0.0.0-20210109005628-b97a57253f70
github.com/fatih/color v1.7.0
github.com/gagliardetto/gofuzz v1.2.2
github.com/gagliardetto/treeout v0.1.2
github.com/google/go-cmp v0.5.1
github.com/google/gofuzz v1.0.0
github.com/gorilla/rpc v1.2.0
github.com/gorilla/websocket v1.4.2
github.com/json-iterator/go v1.1.11
Expand Down Expand Up @@ -51,5 +51,3 @@ require (
)

replace github.com/dfuse-io/binary => github.com/gagliardetto/binary v0.4.0

replace github.com/google/gofuzz => github.com/gagliardetto/gofuzz v1.2.1
5 changes: 3 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/gagliardetto/binary v0.4.0 h1:dxLndYArHtdZYbLYwnpLY86mlAa9gWgxG2zSDPFINjM=
github.com/gagliardetto/binary v0.4.0/go.mod h1:55fxN6CKhVnsBhSr3Hmyn7i2igseIzN9/NC+gHvv42k=
github.com/gagliardetto/gofuzz v1.2.1 h1:fHBiDgCYYb8kBRqyI+bhU59/IKATHArFUAY3iVUrdPA=
github.com/gagliardetto/gofuzz v1.2.1/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/gagliardetto/gofuzz v1.2.2 h1:XL/8qDMzcgvR4+CyRQW9UGdwPRPMHVJfqQ/uMvSUuQw=
github.com/gagliardetto/gofuzz v1.2.2/go.mod h1:bkH/3hYLZrMLbfYWA0pWzXmi5TTRZnu4pMGZBkqMKvY=
github.com/gagliardetto/treeout v0.1.2 h1:WXO7LDJTwINO37OQfNlf7s095Z1bAiwN2ACaZQic33Q=
github.com/gagliardetto/treeout v0.1.2/go.mod h1:loUefvXTrlRG5rYmJmExNryyBRh8f89VZhmMOyCyqok=
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
Expand Down Expand Up @@ -138,6 +138,7 @@ github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMyw
github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.1 h1:JFrFEBb2xKufg6XkJsJr+WbKb4FQlURi5RUcBveYu9k=
github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=
github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
Expand Down
5 changes: 3 additions & 2 deletions programs/system/AdvanceNonceAccount_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_AdvanceNonceAccount(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/AllocateWithSeed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_AllocateWithSeed(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/Allocate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_Allocate(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/AssignWithSeed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_AssignWithSeed(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/Assign_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_Assign(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/AuthorizeNonceAccount_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_AuthorizeNonceAccount(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/CreateAccountWithSeed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_CreateAccountWithSeed(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/CreateAccount_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_CreateAccount(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/InitializeNonceAccount_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_InitializeNonceAccount(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/TransferWithSeed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_TransferWithSeed(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/Transfer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_Transfer(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions programs/system/WithdrawNonceAccount_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package system

import (
"bytes"
ag_gofuzz "github.com/google/gofuzz"
ag_require "github.com/stretchr/testify/require"
"strconv"
"testing"

ag_gofuzz "github.com/gagliardetto/gofuzz"
ag_require "github.com/stretchr/testify/require"
)

func TestEncodeDecode_WithdrawNonceAccount(t *testing.T) {
Expand Down

0 comments on commit 172364e

Please sign in to comment.