Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
asim committed Sep 5, 2022
1 parent e0953a9 commit fdd60fa
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion nft/domain/opensea.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ type Transaction struct {
Id int32 `json:"id,omitempty"`
Timestamp string `json:"timestamp,omitempty"`
BlockHash string `json:"block_hash,omitempty"`
BlockNumber string `json:"block_number,omitempty"`
BlockNumber float64 `json:"block_number,omitempty"`
FromAccount *User `json:"from_account,omitempty"`
ToAccount *User `json:"to_account,omitempty"`
TransactionHash string `json:"transaction_hash,omitempty"`
Expand Down
22 changes: 11 additions & 11 deletions nft/proto/nft.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nft/proto/nft.proto
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ message Transaction {
int32 id = 1;
string timestamp = 2;
string block_hash = 3;
string block_number = 4;
double block_number = 4;
User from_account = 5;
User to_account = 6;
string transaction_hash = 7;
Expand Down

0 comments on commit fdd60fa

Please sign in to comment.