Commit 36709fd 1 parent 6e6b22b commit 36709fd Copy full SHA for 36709fd
File tree 3 files changed +3
-10
lines changed
3 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 5
5
runs-on : ubuntu-latest
6
6
steps :
7
7
- uses : actions/checkout@v4
8
- - run : curl -L https://github.com/filecoin-station/zinnia/releases/download/v0.18.3 /zinnia-linux-x64.tar.gz | tar -xz
8
+ - run : curl -L https://github.com/filecoin-station/zinnia/releases/download/v0.19.1 /zinnia-linux-x64.tar.gz | tar -xz
9
9
- uses : actions/setup-node@v4
10
10
- run : npx standard
11
11
- run : ./zinnia run test.js
Original file line number Diff line number Diff line change @@ -165,19 +165,12 @@ export default class Spark {
165
165
166
166
async submitMeasurement ( task , stats ) {
167
167
console . log ( 'Submitting measurement...' )
168
- // Workaround until there is a new zinnia binary with the following fix:
169
- // https://github.com/filecoin-station/zinnia/pull/538
170
- let participantAddress = Zinnia . walletAddress
171
- if ( participantAddress === 't1abjxfbp274xpdqcpuaykwkfb43omjotacm2p3za' ) {
172
- participantAddress = '0x000000000000000000000000000000000000dEaD'
173
- }
174
-
175
168
const payload = {
176
169
sparkVersion : SPARK_VERSION ,
177
170
zinniaVersion : Zinnia . versions . zinnia ,
178
171
...task ,
179
172
...stats ,
180
- participantAddress,
173
+ participantAddress : Zinnia . walletAddress ,
181
174
stationId : Zinnia . stationId
182
175
}
183
176
console . log ( '%o' , payload )
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ test('submitRetrieval', async () => {
131
131
sparkVersion : SPARK_VERSION ,
132
132
zinniaVersion : Zinnia . versions . zinnia ,
133
133
cid : 'bafytest' ,
134
- participantAddress : '0x000000000000000000000000000000000000dEaD' ,
134
+ participantAddress : Zinnia . walletAddress ,
135
135
stationId : Zinnia . stationId
136
136
} ) ,
137
137
headers : { 'Content-Type' : 'application/json' }
You can’t perform that action at this time.
0 commit comments