You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseException(f"Wallet{account.addrB64} balance is less than requested coins. Balance: {account.balance}, requested amount: {coins} (need {coins-account.balance} more)")
1869
+
raiseException(f"Account{account.addrB64} balance is less than requested coins. Balance: {account.balance}, requested amount: {coins} (need {coins-account.balance} more)")
1870
1870
# end if
1871
1871
# end define
1872
1872
1873
-
defcheck_account_status(self, account):
1873
+
defcheck_account_active(self, account):
1874
1874
ifnotisinstance(account, Account):
1875
+
address=account
1875
1876
account=self.GetAccount(account)
1877
+
else:
1878
+
address=account.addrB64
1876
1879
ifaccount.status!="active":
1877
-
raiseException(f"Wallet {account.addrB64} account is uninitialized")
1880
+
raiseException(f"Account {address} account is uninitialized")
0 commit comments