Skip to content

Commit

Permalink
Fix web3provider bug
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Dec 25, 2024
1 parent b914e71 commit 5e2db49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/archive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ export class Web3Provider implements IWeb3Provider {
const rawData: Record<string, any> = {
nonce: info.nonce,
gasLimit: info.gas,
to: info.to,
to: info.to === null ? '0x' : info.to,
value: info.value,
data: info.input,
r: info.r,
Expand Down

0 comments on commit 5e2db49

Please sign in to comment.