Skip to content

Commit

Permalink
fix contractID setter in XdrHashIDPreimage
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Nov 25, 2024
1 parent e561b15 commit e0f54ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/xdr/xdr_transaction.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1936,7 +1936,7 @@ class XdrHashIDPreimage {

XdrHashIDPreimageContractID? _contractID;
XdrHashIDPreimageContractID? get contractID => this._contractID;
set contractID(XdrHashIDPreimageContractID? value) => this.contractID = value;
set contractID(XdrHashIDPreimageContractID? value) => this._contractID = value;

XdrHashIDPreimageSorobanAuthorization? _sorobanAuthorization;
XdrHashIDPreimageSorobanAuthorization? get sorobanAuthorization =>
Expand Down

0 comments on commit e0f54ee

Please sign in to comment.