Solidity
如何在 Chainlink VRF fullfillRandomWords 函式上跟踪原始 msg.sender?
我正在使用Chainlink VRF來獲取一個隨機數,但我需要在觸發時跟踪
msg.sender
該呼叫。換句話說,我在內部需要相同的內容,並且在我的測試中它會發生變化。我怎樣才能做到這一點?requestRandomWords``fulfillRandomWords``msg.sender``fulfillRandomWords
在查看 Chainlink 文件後,我最終使用 a
mapping
來儲存requestId
特定地址。這使我能夠跟踪發件人。mapping(uint256 => address) private requestIdToRequester;