Skip to content

Commit

Permalink
Cosmetic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sequel21 committed Nov 3, 2024
1 parent a46620b commit 57bb4b8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 24 deletions.
6 changes: 3 additions & 3 deletions contracts/DigitalArt.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ contract DigitalArt: NonFungibleToken {

// The ChainLocker asset head ID of the full metadata JSON.
// It can be used to retrieve the current metadata JSON (if changed).
access(all)
let assetHead: String
access(all)
let assetHead: String

init(
name: String,
Expand Down Expand Up @@ -288,7 +288,7 @@ contract DigitalArt: NonFungibleToken {

// This is the interface that users can cast their DigitalArt Collection as
// to allow others to deposit DigitalArt into their Collection. It also allows for reading
// the details of DigitalArt in the Collection. // REMOVE
// the details of DigitalArt in the Collection.
access(all)
resource interface CollectionPublic {
//access(all)
Expand Down
10 changes: 4 additions & 6 deletions lib/go/iinft/gwtf/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ import (

// GoWithTheFlow Entire configuration to work with Go With the Flow
type GoWithTheFlow struct {
State *flowkit.State
Services flowkit.Services
//Network string
State *flowkit.State
Services flowkit.Services
Logger output.Logger
PrependNetworkToAccountNames bool
}
Expand Down Expand Up @@ -116,9 +115,8 @@ func NewGoWithTheFlowError(paths []string, network string, inMemory bool, logLev
service = flowkit.NewFlowkit(state, *networkDef, gw, logger)
}
return &GoWithTheFlow{
State: state,
Services: service,
//Network: network,
State: state,
Services: service,
Logger: logger,
PrependNetworkToAccountNames: true,
}, nil
Expand Down
11 changes: 0 additions & 11 deletions lib/go/iinft/gwtf/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,17 +343,6 @@ func (tb FlowTransactionBuilder) RunE(ctx context.Context) ([]flow.Event, error)
Location: codeFileName,
},
tb.GasLimit,
//
////tb.Proposer.Address,
////authorizers,
////tb.Payer.Address,
//tb.Proposer.Key.Index(),
//code,
//codeFileName,
//tb.GasLimit,
//tb.Arguments,
//tb.GoWithTheFlow.Network,
//true,
)
if err != nil {
return nil, err
Expand Down
Loading

0 comments on commit 57bb4b8

Please sign in to comment.