Skip to content

Commit

Permalink
allow empty addresses while query send to eth
Browse files Browse the repository at this point in the history
  • Loading branch information
kstoykov committed Nov 8, 2023
1 parent 3171e1b commit d35f0a0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/stargate/modules/gravity/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import{
}from "./proto-types/query"

import Long from "long";
import { NftExtension } from "../nft/queries";

export interface GravityExtension {
readonly gravity: {
Expand All @@ -55,10 +54,7 @@ export interface GravityExtension {
readonly getDelegateKeyByValidator: ( validatorAddress: string ) => Promise<QueryDelegateKeysByValidatorAddressResponse>;
readonly getDelegateKeyByEth: ( ethAddress: string ) => Promise<QueryDelegateKeysByEthAddressResponse>;
readonly getDelegateKeyByOrchestrator: ( orchestratorAddress: string ) => Promise<QueryDelegateKeysByOrchestratorAddressResponse>;
readonly getPendingSendToEth: ( senderAddress?: string ) => Promise<QueryPendingSendToEthResponse>;



readonly getPendingSendToEth: ( senderAddress: string ) => Promise<QueryPendingSendToEthResponse>;
}
}

Expand Down

0 comments on commit d35f0a0

Please sign in to comment.