diff --git a/tic.js b/tic.js index 4aae40d..eb06fdc 100644 --- a/tic.js +++ b/tic.js @@ -111,13 +111,12 @@ class TIC { let action=new ticActionTransfer({ amount: parseInt(option.amount), toAddress: option.toAddress, - fee:option.fee||this._defaultFee + fee:option.fee||this._defaultFee, }) //sign for txBody use function packMe, which needs actor's keypair as parameter action.packMe({ - seckey: this.seckey, - pubkey: this.pubkey, - address: this.address + seckey: this.seckey, + pubkey: this.pubkey, }) return action }