Skip to content

Commit 9438628

Browse files
committed
chore: minor fix in async MsgRelayPriceFeedPrice example
1 parent 54d7394 commit 9438628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/async/chain_client/23_MsgRelayPriceFeedPrice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async def main() -> None:
3434
# load account
3535
priv_key = PrivateKey.from_hex("f9db9bf330e23cb7839039e944adef6e9df447b90b503d5b4464c90bea9022f3")
3636
pub_key = priv_key.to_public_key()
37-
address = pub_key.to_address().init_num_seq(network.lcd_endpoint)
37+
address = await pub_key.to_address().async_init_num_seq(network.lcd_endpoint)
3838

3939
price = 45000
4040
price_to_send = [str(int(price * 10 ** 6))]

0 commit comments

Comments
 (0)