forked from cerc-io/cosmos-explorer
fix error on v0.46.x
This commit is contained in:
parent
6c42502e93
commit
23baeb31d9
@ -106,7 +106,7 @@ export default class ChainFetch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getTxsBySender(sender) {
|
async getTxsBySender(sender) {
|
||||||
return this.get(`/cosmos/tx/v1beta1/txs?events=message.sender='${sender}'&pagination.reverse=true&order_by=ORDER_BY_DESC`)
|
return this.get(`/cosmos/tx/v1beta1/txs?events=message.sender='${sender}'&pagination.reverse=true`)
|
||||||
}
|
}
|
||||||
|
|
||||||
async getTxsByRecipient(recipient) {
|
async getTxsByRecipient(recipient) {
|
||||||
|
@ -736,7 +736,8 @@ export default {
|
|||||||
return this.$store.state.chains.denoms
|
return this.$store.state.chains.denoms
|
||||||
},
|
},
|
||||||
isEthAddr() {
|
isEthAddr() {
|
||||||
return JSON.stringify(this.account).indexOf('PubKeyEthSecp256k1') > 0
|
// JSON.stringify(this.account).indexOf('PubKeyEthSecp256k1') > 0
|
||||||
|
return false
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
Loading…
Reference in New Issue
Block a user