Wallets
Mist Multisig 錢包:如何更改每日提款限額?
有人知道如何在 Mist 中更改 Mist 多重簽名錢包的每日提款限額嗎?
我與錢包開發人員進行了交談,他們說這還不容易,但他們會在錢包軟體的未來版本中使其變得容易。
我首先要說這可能是不可能的。您可能只需將資金轉移到新的錢包合約中即可。但如果你想嘗試無論如何…
看看這個函式:
https://github.com/ethereum/meteor-dapp-wallet/blob/master/Wallet.sol#L245
// (re)sets the daily limit. needs many of the owners to confirm. doesn't alter the amount already spent today. function setDailyLimit(uint _newLimit) onlymanyowners(sha3(msg.data, block.number)) external { m_dailyLimit = _newLimit; }
請注意,這是一個 onlymanyowners 函式。(如果您將其設置為 2 of 3,我相信您至少需要 2 個鍵來更改每日限制。不確定這是否真的像這樣工作,您需要先進行測試。)