(account: string)
| 169 | } |
| 170 | |
| 171 | async getnewaddress(account: string): Promise<string> { |
| 172 | await this.setWallet(); |
| 173 | return (await this.call('getnewaddress', [account], this.walletName)) as string; |
| 174 | } |
| 175 | |
| 176 | async signrawtx(txs: string): Promise<any> { |
| 177 | await this.setWallet(); |