Skip to content

Commit

Permalink
Update Flow.php
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-mayven committed Jun 4, 2021
1 parent 0971e71 commit 0eb0b49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FlowSDK/Flow.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ public function run(){
$cmd[] = json_encode($this->args);
}

if(config('services.flow.network') != 'emulator'){
if(config('flow.network') != 'emulator'){
$cmd[] = '--network';
$cmd[] = config('services.flow.network');
$cmd[] = config('flow.network');
if($this->type == 'transaction') {
$cmd[] = '--signer';
$cmd[] = 'testnet-account';
Expand Down

0 comments on commit 0eb0b49

Please sign in to comment.