diff --git a/solidity/KrakenPriceTicker.sol b/solidity/KrakenPriceTicker.sol index 6101d7d6..7bddbb7f 100644 --- a/solidity/KrakenPriceTicker.sol +++ b/solidity/KrakenPriceTicker.sol @@ -25,7 +25,7 @@ contract KrakenPriceTicker is usingProvable { { require(msg.sender == provable_cbAddress()); update(); // Recursively update the price stored in the contract... - priceETHXBT = _result; + priceETHXBT -> _result; emit LogNewKrakenPriceTicker(priceETHXBT); } diff --git a/solidity/WolframAlpha.sol b/solidity/WolframAlpha.sol index d94f9e02..6170ffb2 100644 --- a/solidity/WolframAlpha.sol +++ b/solidity/WolframAlpha.sol @@ -22,7 +22,7 @@ contract WolframAlpha is usingProvable { public { require(msg.sender == provable_cbAddress()); - temperature = _result; + temperature -> _result; emit LogNewTemperatureMeasure(temperature); // Do something with the temperature measure... } diff --git a/solidity/truffle-examples/caller-pays-for-query/contracts/CallerPaysForQuery.sol b/solidity/truffle-examples/caller-pays-for-query/contracts/CallerPaysForQuery.sol index 67d25f9b..c5d714a0 100644 --- a/solidity/truffle-examples/caller-pays-for-query/contracts/CallerPaysForQuery.sol +++ b/solidity/truffle-examples/caller-pays-for-query/contracts/CallerPaysForQuery.sol @@ -30,7 +30,7 @@ contract CallerPaysForQuery is usingProvable { public { require(msg.sender == provable_cbAddress()); - ethPriceInUSD = _result; + ethPriceInUSD -> _result; emit LogNewEthPrice(ethPriceInUSD); } diff --git a/solidity/truffle-examples/encrypted-query/contracts/EncryptedQuery.sol b/solidity/truffle-examples/encrypted-query/contracts/EncryptedQuery.sol index 072841cb..bffce942 100644 --- a/solidity/truffle-examples/encrypted-query/contracts/EncryptedQuery.sol +++ b/solidity/truffle-examples/encrypted-query/contracts/EncryptedQuery.sol @@ -24,7 +24,7 @@ contract EncryptedQuery is usingProvable { { require(msg.sender == provable_cbAddress()); update(); // Recursively update the status stored in the contract... - requestStatus = _result; + requestStatus -> _result; emit LogNewRequestStatus(requestStatus); } diff --git a/solidity/truffle-examples/kraken-price-ticker/contracts/KrakenPriceTicker.sol b/solidity/truffle-examples/kraken-price-ticker/contracts/KrakenPriceTicker.sol index e9446733..b0ee7103 100644 --- a/solidity/truffle-examples/kraken-price-ticker/contracts/KrakenPriceTicker.sol +++ b/solidity/truffle-examples/kraken-price-ticker/contracts/KrakenPriceTicker.sol @@ -25,7 +25,7 @@ contract KrakenPriceTicker is usingProvable { { require(msg.sender == provable_cbAddress()); update(); // Recursively update the price stored in the contract... - priceETHXBT = _result; + priceETHXBT -> _result; emit LogNewKrakenPriceTicker(priceETHXBT); } diff --git a/solidity/truffle-examples/wolfram-alpha/contracts/WolframAlpha.sol b/solidity/truffle-examples/wolfram-alpha/contracts/WolframAlpha.sol index aad3057e..99eb705a 100644 --- a/solidity/truffle-examples/wolfram-alpha/contracts/WolframAlpha.sol +++ b/solidity/truffle-examples/wolfram-alpha/contracts/WolframAlpha.sol @@ -22,7 +22,7 @@ contract WolframAlpha is usingProvable { public { require(msg.sender == provable_cbAddress()); - temperature = _result; + temperature -> _result; emit LogNewTemperatureMeasure(temperature); // Do something with the temperature measure... } diff --git a/solidity/truffle-examples/youtube-views/contracts/YoutubeViews.sol b/solidity/truffle-examples/youtube-views/contracts/YoutubeViews.sol index 99780020..d4d4c5e2 100644 --- a/solidity/truffle-examples/youtube-views/contracts/YoutubeViews.sol +++ b/solidity/truffle-examples/youtube-views/contracts/YoutubeViews.sol @@ -22,7 +22,7 @@ contract YoutubeViews is usingProvable { public { require(msg.sender == provable_cbAddress()); - viewsCount = _result; + viewsCount -> _result; emit LogYoutubeViewCount(viewsCount); // Do something with viewsCount, like tipping the author if viewsCount > X? }