Hi, friends, I'm researching TON ecosystems via pytonlib and here is my code snippet about coin transferring from one wallet to another inside testnet:
Active wallet source with non zero balance is here:
Other wallet destination with non zero balance is here:
Both wallets are active and each has a non zero balance.
And I discovered many things in wallet don't work inside testnet, e.g.:
Coin transferring from one wallet to another has NO effect and gives many errors
Getting wallet activity state is always INCORRECT despite it was really activated
ton.tonlibjson.TonlibError: DANGEROUS_TRANSACTION: Transfer to uninited wallet
Getting wallet balance always gives -1 and it's not true...
Using await wallet.transfer(OTHER_WALLET, client.to_nano(0.01), comment='test', allow_send_to_uninited=True) with allow_send_to_uninited=True gives another error ton.tonlibjson.TonlibError: NOT_ENOUGH_FUNDS:
P.S.: By the way, I also tried python ton sdk for my experiment about coin transferring inside testnet and it seems python ton sdk aslo doesn't work correct...
Hi, friends, I'm researching
TON
ecosystems viapytonlib
and here is my code snippet about coin transferring from one wallet to another insidetestnet
:Active
wallet source
with non zero balance is here:Other wallet destination
with non zero balance is here:Both wallets are active and each has a non zero balance.
And I discovered many things in wallet don't work inside
testnet
, e.g.:ton.tonlibjson.TonlibError: DANGEROUS_TRANSACTION: Transfer to uninited wallet
-1
and it's not true...More details:
await wallet.transfer(OTHER_WALLET, client.to_nano(0.01), comment='test', allow_send_to_uninited=True)
withallow_send_to_uninited=True
gives another errorton.tonlibjson.TonlibError: NOT_ENOUGH_FUNDS
:Friends, how to fix it? I appreciate any help :)
P.S.: By the way, I also tried python ton sdk for my experiment about coin transferring inside
testnet
and it seems python ton sdk aslo doesn't work correct...