Skip to content

Commit

Permalink
Fix incorrect reference to global schema (#427)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnjamin authored Nov 17, 2022
1 parent 6f1b5a4 commit e02a80f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ public Transaction(
if (foreignAssets != null) this.foreignAssets = foreignAssets;
if (globalStateSchema != null) this.globalStateSchema = globalStateSchema;
if (applicationId != null) this.applicationId = applicationId;
if (localStateSchema != null) this.localStateSchema = globalStateSchema;
if (localStateSchema != null) this.localStateSchema = localStateSchema;
if (clearStateProgram != null) this.clearStateProgram = clearStateProgram;
if (extraPages != null) this.extraPages = extraPages;
}
Expand Down

0 comments on commit e02a80f

Please sign in to comment.