Skip to content

Commit 47323e0

Browse files
bangjelkoskibillyjacoby
authored andcommitted
refactor: minor
1 parent f63dbfa commit 47323e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/sdk-ts/src/core/tx/api/TxRestApi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class TxRestApi implements TxConcreteApi {
3636
public async fetchTx(txHash: string, params: any = {}): Promise<TxResponse> {
3737
try {
3838
const response = await this.client.$get<TxResultResponse>(
39-
`/cosmos/tx/v1beta1/txs/${txHash}`,
39+
`cosmos/tx/v1beta1/txs/${txHash}`,
4040
params,
4141
)
4242

@@ -133,7 +133,7 @@ export class TxRestApi implements TxConcreteApi {
133133

134134
try {
135135
const response = await this.client.$post<SimulationResponse>(
136-
'/cosmos/tx/v1beta1/simulate',
136+
'cosmos/tx/v1beta1/simulate',
137137
{
138138
tx_bytes: TxClient.encode(txRawClone),
139139
},

0 commit comments

Comments
 (0)