DispatcherStorage dispatcherStorage = DispatcherStorage(0x1111222233334444555566667777888899990000);
Can we use contract address as an property
address public Storage;
function setStorage(address storageAddress) public {
Storage = storageAddress;
}
DispatcherStorage dispatcherStorage = DispatcherStorage(Storage);
I tried to do this but it's not working, but in callback function we can use variables values.
DispatcherStorage dispatcherStorage = DispatcherStorage(0x1111222233334444555566667777888899990000);
Can we use contract address as an property
address public Storage;
function setStorage(address storageAddress) public {
Storage = storageAddress;
}
DispatcherStorage dispatcherStorage = DispatcherStorage(Storage);
I tried to do this but it's not working, but in callback function we can use variables values.