Un-hardcode another hex method ID
This commit is contained in:
parent
c0fa786225
commit
074f510aa5
|
@ -5,7 +5,8 @@
|
|||
(defonce confirmation-topic "0xc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e51")
|
||||
|
||||
(defonce method-ids
|
||||
{:submit-transaction (eth/sig->method-id "submitTransaction(address,uint256,bytes)")})
|
||||
{:submit-transaction (eth/sig->method-id "submitTransaction(address,uint256,bytes)")
|
||||
:withdraw-everything (eth/sig->method-id "withdrawEverything(address)")})
|
||||
|
||||
|
||||
(defn execute
|
||||
|
@ -34,6 +35,9 @@
|
|||
(defn send-all
|
||||
[contract to]
|
||||
(log/debug "multisig.send-all(contract, to)" contract to)
|
||||
(let [params (eth/format-call-params
|
||||
(:withdraw-everything method-ids)
|
||||
to)]
|
||||
(eth/execute (eth/eth-account)
|
||||
contract
|
||||
(:submit-transaction method-ids)
|
||||
|
@ -41,4 +45,4 @@
|
|||
0
|
||||
"0x60"
|
||||
"0x24"
|
||||
(eth/format-call-params "0xf750aaa6" to)))
|
||||
params)))
|
||||
|
|
Loading…
Reference in New Issue