Skip to content

Commit

Permalink
xdr: update using xdrgen#73 (#4073)
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio authored Nov 15, 2021
1 parent 46c8c64 commit 4f7ba18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GIT
remote: https://github.com/stellar/xdrgen.git
revision: 0e66fb9029643d3e59b381c01c446782a49c26fe
revision: b960ce7a979bc64d11f7512962733ee88ea87a2b
ref: master
specs:
xdrgen (0.1.1)
Expand Down
4 changes: 2 additions & 2 deletions xdr/xdr_generated.go
Original file line number Diff line number Diff line change
Expand Up @@ -1270,9 +1270,9 @@ var _ xdrType = (*DataValue)(nil)
type PoolId Hash

// EncodeTo encodes this value using the Encoder.
func (s PoolId) EncodeTo(e *xdr.Encoder) error {
func (s *PoolId) EncodeTo(e *xdr.Encoder) error {
var err error
if err = (*Hash)(&s).EncodeTo(e); err != nil {
if err = (*Hash)(s).EncodeTo(e); err != nil {
return err
}
return nil
Expand Down

0 comments on commit 4f7ba18

Please sign in to comment.