Skip to content

Commit

Permalink
Deprecated AccountRAMDelta which is not the right name used in EOSIO
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Vachon committed Oct 16, 2021
1 parent bc63642 commit 16e0fe3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions responses.go
Expand Up @@ -117,6 +117,14 @@ type ActionTrace struct {
InlineTraces []ActionTrace `json:"inline_traces,omitempty" eos:"-"`
}

type AccountDelta struct {
Account AccountName `json:"account"`
Delta Int64 `json:"delta"`
}

// AccountRAMDelta
//
// Deprecated: Use AccountDelta instead which is the struct name used in EOSIO
type AccountRAMDelta struct {
Account AccountName `json:"account"`
Delta Int64 `json:"delta"`
Expand Down

0 comments on commit 16e0fe3

Please sign in to comment.