Skip to content

Commit 79c13ee

Browse files
committed
Fix the param parsing
1 parent c159139 commit 79c13ee

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

contracts/feralfile-exhibition-v5/feralfile.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,15 @@ func (c *FeralfileExhibitionV5Contract) Call(wallet *ethereum.Wallet, method, fu
153153
SaleData struct {
154154
Price ethereum.BigInt `json:"price"`
155155
Cost ethereum.BigInt `json:"cost"`
156-
ExpiryTime ethereum.BigInt `json:"expiry_time"`
156+
ExpiryTime ethereum.BigInt `json:"expiryTime"`
157157
Destination common.Address `json:"destination"`
158-
TokenIds []ethereum.BigInt `json:"token_ids"`
158+
TokenIds []ethereum.BigInt `json:"tokenIds"`
159159
RevenueShares [][]struct {
160160
Recipient common.Address `json:"recipient"`
161161
Bps ethereum.BigInt `json:"bps"`
162-
} `json:"revenue_shares"`
163-
PayByVaultContract bool `json:"pay_by_vault_contract"`
164-
BiddingUnix ethereum.BigInt `json:"bidding_unix"`
162+
} `json:"revenueShares"`
163+
PayByVaultContract bool `json:"payByVaultContract"`
164+
BiddingUnix ethereum.BigInt `json:"biddingUnix"`
165165
} `json:"sale_data"`
166166
R string `json:"r"`
167167
S string `json:"s"`

0 commit comments

Comments
 (0)